Learn how to access data using the Expo / RN SDK
db.from(*insert table name*)
, and chain it with any of the following methods:
getAll()
get(id)
add(value)
update(id, value)
replace(id, value)
delete(id)
id
or created_at
field since these are reserved and exist with every row. You can access them with the get
operatorsgetAll()
get(id)
add(value)
update(id, value)
replace(id, value)
delete(id)