bind method

Query<R, F> bind(
  1. QueryContext context
)

Rebind the root description to an execution context. Nested queries retain their original context and are rejected when they do not match.

Implementation

Query<R, F> bind(QueryContext context) =>
    Query.internal(context, queryFields, queryState, querySelection);