returns PublishListDetail
Single publish list with enriched members, or null.
| Name | Type | Description |
|---|---|---|
| listId | String! | The publish list's id. |
Full detail including members.
| Field | Type | Description |
|---|---|---|
| id | String! | List identifier (ULID). |
| name | String! | Human-readable list name. |
| description | String | Free-form description. |
| memberCount | Int! | Number of recipient graphs currently on the list. |
| createdBy | String! | User ID that created the list. |
| createdAt | DateTime! | When the list was created. |
| updatedAt | DateTime! | Last metadata update (name/description). |
| members | [PublishListMember!]! | All recipient graphs on the list. |
{ publishList(listId: "...") { id name description memberCount } }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 } }"}'