Skip to content

absinthe.execute.operation.stop

View Markdown

An Absinthe GraphQL operation finished.

Source Absinthe Category GraphQL Fields 8 honeybadger-elixir

Fields

8
FieldTypeDescription
event_typestringAllowed value: absinthe.execute.operation.stop.
operation_namestringNamed operation from the GraphQL query, if present.
operation_typestringOperation type: "query", "mutation", or "subscription".
selectionsarray<string>Top-level field names selected in the operation.
schemastringAbsinthe schema module name.
errorsarray<object>GraphQL errors returned in the result, if any.
durationnumberOperation execution duration in microseconds.
request_idstringRequest ID from the current EventContext.

Example

{
"event_type": "absinthe.execute.operation.stop",
"operation_name": "GetUser",
"operation_type": "query",
"selections": [
"user"
],
"schema": "Elixir.MyAppWeb.Schema",
"duration": 25000,
"request_id": "F8ZBOg1zcBQDqDgAAADx"
}