Sign in

Execute GraphQL operation for Organizations

documented

Run GraphQL queries or mutations related to organizations.

POST /v1/graphqlGraphQL APIno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://api.lime-go.com/graphql" \
  -X POST \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -H "Authorization: go-api:{{LIME-GO_API_KEY}}" \
  -d '{"query":"query GetDeals($status: String, $limit: Int) { deals(first: $limit, filter: {status: $status}) { edges { node { id name status value } } } }","variables":{"status":"{{$status}}","limit":{{$limit}}}}'
Execute GraphQL operation for Organizations · Lime Go · OpenIntegrations