Overview of the superglue GraphQL API
call
operations - use executeWorkflow
insteadextract
operations - use executeWorkflow
insteadtransform
operations - use executeWorkflow
insteadupsertApi
, upsertExtract
, upsertTransform
- use workflow-based operations insteadhttps://graphql.superglue.cloud
or omit endpoint in the SDK. Self-hosted default port: 3000.
selfHealing
: If it should auto-fix issues
ENABLED
: Full auto-healing (recommended)TRANSFORM_ONLY
: Only fix data transformation issuesREQUEST_ONLY
: Only fix API request issuesDISABLED
: No auto-healingcacheMode
: Deprecated - If it should use the saved configuration and update it if self-healing is performed. this only works for calls, not for workflows.
ENABLED
: Cache reads and writesREADONLY
: Only read from cache, donβt write (Default)WRITEONLY
: Only write to cache, donβt readDISABLED
: No cachingtimeout
: Maximum time to wait (milliseconds)retries
: Number of retry attempts on failureretryDelay
: Delay between retries (milliseconds)webhookUrl
: POST endpoint for async notifications - this only works for calls, not for workflows.testMode
: If true, validate each request after execution. This is useful for building, testing and debugging.executeWorkflow
) accept a RequestOptions
object.
limit: Int
(default: 50)offset: Int
(default: 0)webhookUrl
is set in options:
{success: true, data: result}
{success: false, error: message}