Constants

GraphQLQueryMethod

class aiographql.client.GraphQLQueryMethod(post: str = 'post', get: str = 'get') None
Parameters:
post: str = 'post'
get: str = 'get'

GraphQLSubscriptionEventType

class aiographql.client.GraphQLSubscriptionEventType(*values)

GraphQL Subscription Event Types

CONNECTION_INIT = 'connection_init'
CONNECTION_ACK = 'connection_ack'
CONNECTION_ERROR = 'connection_error'
CONNECTION_TERMINATE = 'connection_terminate'
START = 'start'
DATA = 'data'
ERROR = 'error'
COMPLETE = 'complete'
STOP = 'stop'
KEEP_ALIVE = 'ka'