Droplets
System lists.
DropletGet
core.DropletGet({handle=...})
Retrieve the content attribute for a specific entry.
- Object
handle: String!
- handle for the dropletname: String!
- name for the entry
Value
value of the entry
core.DropletGet({handle="drop1",name="test1"})
DropletGetList
core.DropletGetList({handle=...})
Retrieve all droplet entries.
- Object
handle: String!
- droplet handlename: String
- name is optional
- Object List
handle: String!
- droplet handlename: String
- name is optionalcontent: String
- name is optionalid
rule
core.DropletGetList({handle="drop1"})
DropletSet
core.DropletSet({handle=...})
Create or update an entry based on the handle and name.
- Object
handle: String!
name: String!
content: String!
- Boolean
core.DropletSet({handle="drop1",name="test1", content="sunrise"})