Sign in

Execute GraphQL query

documented

Submit a GraphQL query to a data layer GraphQL API URL. The endpoint URL is data-layer specific (e.g., https://{data_layer_key}-prod.api.netlify-connect.com).

GraphQLno 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://{{$data_layer_api_url}}" \
  -X POST \
  -H "Authorization: Bearer {{NETLIFY_API_KEY}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"query": "{{$query}}", "variables": {{$variables}}}'