[][src]Struct juniper::SchemaType

pub struct SchemaType<'a, S> { /* fields omitted */ }

Metadata for a schema

Implementations

impl<'a, S> SchemaType<'a, S>[src]

pub fn new<QueryT, MutationT, SubscriptionT>(
    query_info: &QueryT::TypeInfo,
    mutation_info: &MutationT::TypeInfo,
    subscription_info: &SubscriptionT::TypeInfo
) -> Self where
    S: ScalarValue + 'a,
    QueryT: GraphQLType<S>,
    MutationT: GraphQLType<S>,
    SubscriptionT: GraphQLType<S>, 
[src]

Create a new schema.

pub fn add_directive(&mut self, directive: DirectiveType<'a, S>)[src]

Add a directive like skip or include.

pub fn type_by_name(&self, name: &str) -> Option<TypeType<'_, S>>[src]

Get a type by name.

pub fn concrete_type_by_name(&self, name: &str) -> Option<&MetaType<'_, S>>[src]

Get a concrete type by name.

pub fn query_type(&self) -> TypeType<'_, S>[src]

Get the query type from the schema.

pub fn concrete_query_type(&self) -> &MetaType<'_, S>[src]

Get the concrete query type from the schema.

pub fn mutation_type(&self) -> Option<TypeType<'_, S>>[src]

Get the mutation type from the schema.

pub fn concrete_mutation_type(&self) -> Option<&MetaType<'_, S>>[src]

Get the concrete mutation type from the schema.

pub fn subscription_type(&self) -> Option<TypeType<'_, S>>[src]

Get the subscription type.

pub fn concrete_subscription_type(&self) -> Option<&MetaType<'_, S>>[src]

Get the concrete subscription type.

pub fn type_list(&self) -> Vec<TypeType<'_, S>>[src]

Get a list of types.

pub fn concrete_type_list(&self) -> Vec<&MetaType<'_, S>>[src]

Get a list of concrete types.

pub fn make_type(&self, t: &Type<'_>) -> TypeType<'_, S>[src]

Make a type.

pub fn directive_list(&self) -> Vec<&DirectiveType<'_, S>>[src]

Get a list of directives.

pub fn directive_by_name(&self, name: &str) -> Option<&DirectiveType<'_, S>>[src]

Get directive by name.

pub fn type_overlap(&self, t1: &MetaType<'_, S>, t2: &MetaType<'_, S>) -> bool[src]

Determine if there is an overlap between types.

pub fn possible_types(&self, t: &MetaType<'_, S>) -> Vec<&MetaType<'_, S>>[src]

A list of possible typeees for a given type.

pub fn is_possible_type(
    &self,
    abstract_type: &MetaType<'_, S>,
    possible_type: &MetaType<'_, S>
) -> bool
[src]

If the abstract type is possible.

pub fn is_subtype<'b>(&self, sub_type: &Type<'b>, super_type: &Type<'b>) -> bool[src]

If the type is a subtype of another type.

pub fn is_named_subtype(
    &self,
    sub_type_name: &str,
    super_type_name: &str
) -> bool
[src]

If the type is a named subtype.

Trait Implementations

impl<'a, S> Context for SchemaType<'a, S>[src]

impl<'a, S: Debug> Debug for SchemaType<'a, S>[src]

impl<'a, S> GraphQLObjectType<S> for SchemaType<'a, S> where
    S: ScalarValue + 'a, 
[src]

impl<'a, S> GraphQLType<S> for SchemaType<'a, S> where
    S: ScalarValue + 'a, 
[src]

impl<'a, S> GraphQLValue<S> for SchemaType<'a, S> where
    S: ScalarValue + 'a, 
[src]

type Context = SchemaType<'a, S>

Context type for this GraphQLValue. Read more

type TypeInfo = ()

Type that may carry additional schema information for this GraphQLValue. Read more

impl<'a, S> GraphQLValueAsync<S> for SchemaType<'a, S> where
    S: ScalarValue + 'a,
    S: Send + Sync,
    Self: Sync
[src]

impl<'a, S> IsOutputType<S> for SchemaType<'a, S> where
    S: ScalarValue + 'a, 
[src]

Auto Trait Implementations

impl<'a, S> RefUnwindSafe for SchemaType<'a, S> where
    S: RefUnwindSafe
[src]

impl<'a, S> Send for SchemaType<'a, S> where
    S: Send
[src]

impl<'a, S> Sync for SchemaType<'a, S> where
    S: Sync
[src]

impl<'a, S> Unpin for SchemaType<'a, S> where
    S: Unpin
[src]

impl<'a, S> UnwindSafe for SchemaType<'a, S> where
    S: UnwindSafe
[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,