Creating Data

Insert a new datatype record, where datatype is the name of the datatype, and data is a JSON serializable dictionary:

sf = subfork.get_client()
sf.get_data(datatype).insert(data)
For example:

venue = {
    "city": "San Francisco",
    "name": "Bourbon & Branch"
}
sf.get_data("venue").insert(venue)

Note

Data must be JSON serializable.

Data can also be nested and reference other datatype records:

params = [
    ["name", "=", "Bourbon & Branch"]
]
venue = sf.get_data("venue").find_one(params)
event = {
    "date": "2023-12-31",
    "venue": venue
}
sf.get_data("event").insert(event)