Skip to content

Droplets

System lists.

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!
    • name: String!
    • content: String!
  • Boolean
    core.DropletSet({handle="drop1",name="test1", content="sunrise"})