Packages

package graphql

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. All

Type Members

  1. class DefaultGraphqlSchemaProvider extends GraphqlSchemaProvider with StrictLogging

    A GraphQL Schema Provider implementation.

    A GraphQL Schema Provider implementation.

    We compute the schema and cache it for performance reasons.

    Note: we assume that the schemaProvider can return different schemas over time. We also assume that they change relatively slowly.

    Note: we rely on object identity to ensure an efficient set comparison. (This is a reasonably good approach, because we assume immutable collections. Therefore we know we will never skip re-computing when we should.

    Note: we avoid taking locks to avoid thread contention. We accept this at the cost of potentially re-computing the schema multiple times upon schema change. Additionally, we do not use any volatile variables, but instead rely on the JVM's guarantee that object references are atomically written.

  2. trait GraphqlSchemaProvider extends AnyRef

    Provides GraphQL schemas for other components of the ARI+GraphQL system.

  3. case class SangriaGraphQlContext(fetcher: FetcherApi, requestHeader: RequestHeader, executionContext: ExecutionContext, debugMode: Boolean) extends Product with Serializable
  4. class SangriaGraphQlSchemaBuilder extends StrictLogging

Value Members

  1. object DefaultGraphqlSchemaProvider

Ungrouped