Browse the extensions reference

blockedSourceGraphs

returns BlockedSourceGraphList

Source graphs barred from sharing reports into this graph.

The read side of the recipient's exit from cross-graph sharing; manage the list with the block-source-graph / unblock-source-graph operations.

Arguments

NameTypeDescription
limitIntMaximum rows to return, 1-1000. Omit to use this field's own default; out of range raises INVALID_PAGINATION.
offsetIntRows to skip before returning, 0 or greater. Out of range raises INVALID_PAGINATION.

Returns BlockedSourceGraphList

Paginated list of blocked source graphs.

FieldTypeDescription
blockedSourceGraphs[BlockedSourceGraph!]!Blocked source graphs.
paginationPaginationInfo!Pagination metadata.

Example

query
{ blockedSourceGraphs }
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": "{ blockedSourceGraphs }"}'