Browse the extensions reference

publishList

returns PublishListDetail

Single publish list with enriched members, or null.

Arguments

NameTypeDescription
listIdString!The publish list's id.

Returns PublishListDetail

Full detail including members.

FieldTypeDescription
idString!List identifier (ULID).
nameString!Human-readable list name.
descriptionStringFree-form description.
memberCountInt!Number of recipient graphs currently on the list.
createdByString!User ID that created the list.
createdAtDateTime!When the list was created.
updatedAtDateTime!Last metadata update (name/description).
members[PublishListMember!]!All recipient graphs on the list.

Example

query
{ publishList(listId: "...") { id name description memberCount } }
curl
curl -X POST "https://api.robosystems.ai/extensions/$GRAPH_ID/graphql" \
  -H "X-API-Key: $ROBOSYSTEMS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query": "{ publishList(listId: \"...\") { id name description memberCount } }"}'