OBJECT

Authorizer

Authorizer is a graph primitive used for authorizing inbound requests(see Request)

link GraphQL Schema definition

  • type Authorizer {
  • # name is the unique name of the authorizer in the graph
  • name: String!
  • # expression is a boolean CEL expression used to evaluate the inbound request
  • expression: String!
  • target_requests: Boolean!
  • target_responses: Boolean!
  • }