[][src]Module wundergraph::prelude

Re-exports important traits and types. Meant to be glob imported when using wundergraph.

Macros

mutation_object

Macro to register the main mutation object

query_object

Macro to register the main query object

Structs

HasMany

Type used to indicate that a given field references multiple other entities by a given id

Enums

HasOne

Type used to indicate that a given field references a single other entity by id

Traits

QueryModifier

A trait to modify the query generated by the default LoadingHandler implementation

WundergraphContext

A trait for types that could be used as context types for wundergraph

Type Definitions

BoxedQuery

A helper type to simplify the select statement query type for a given loading handler.

Derive Macros

WundergraphEntity

A custom derive to implement all wundergraph related traits for a entity Using this trait implies internally #[derive(WundergraphBelongsTo)] and #[derive(BuildFilterHelper)]