Skip to content

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 orgs
    • handle: String! - handle for the droplet
    • dropletName: String! - name for the droplet
    • name: String! - key for the entry
    • content: 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 droplet
    • name: 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 handle
    • name: String - name is optional
  • Object List
    • handle: String! - droplet handle
    • name: String - name is optional
    • content: String - name is optional
    • id
    • rule
    core.DropletGetList({handle="drop1"})

DropletSet

    core.DropletSet({handle=...})

Create or update an entry based on the handle and name.

  • Object
    • handle: String! - droplet handle
    • name: String! - key
    • content: String! - value
    • orgId: Uuid - optional child org id
  • Boolean
    core.DropletSet({handle="drop1",name="test1", content="sunrise"})