Droplets
System lists.
DropletVerify
core.DropletVerify({
orgId="8b5....7b",
handle="test3",
name="key1",
dropletName="Entry 3",
content="some quicker foxes"
})
Creates or updates a droplet and droplet entry; use this if the droplet may not already be there, otherwise use DropletSet
- Object
orgId: String!
- optional; allows setting droplets for child orgshandle: String!
- handle for the dropletdropletName: String!
- name for the dropletname: String!
- key for the entrycontent: String!
- value for the entry
Value
value of the entry
core.DropletVerify({
orgId="8b5....7b",
handle="test3",
name="key1",
dropletName="Entry 3",
content="some quicker foxes"
})
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!
- droplet handlename: String!
- keycontent: String!
- valueorgId: Uuid
- optional child org id
- Boolean
core.DropletSet({handle="drop1",name="test1", content="sunrise"})