Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 532 Bytes

File metadata and controls

30 lines (22 loc) · 532 Bytes
layout language permalink command related_commands
api-command
Python
api/python/append/
append
prepend merge insert_at delete_at change_at
prepend/
merge/
insert_at/
delete_at/
change_at/

Command syntax

{% apibody %} array.append(value) → array {% endapibody %}

Description

Append a value to an array.

Example: Retrieve Iron Man's equipment list with the addition of some new boots.

r.table('marvel').get('IronMan')['equipment'].append('newBoots').run(conn)