Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AnnotationFunc ¶
The AnnotationFunc type is an adapter to allow the use of ordinary function as a Querier.
type AnnotationNamespaceFunc ¶
type AnnotationNamespaceFunc func(context.Context, *generated.AnnotationNamespaceQuery) (generated.Value, error)
The AnnotationNamespaceFunc type is an adapter to allow the use of ordinary function as a Querier.
type Func ¶
The Func type is an adapter that allows ordinary functions to be used as interceptors. Unlike traversal functions, interceptors are skipped during graph traversals. Note that the implementation of Func is different from the one defined in entgo.io/ent.InterceptFunc.
type MetadataFunc ¶
The MetadataFunc type is an adapter to allow the use of ordinary function as a Querier.
type Query ¶
type Query interface { // Type returns the string representation of the query type. Type() string // Limit the number of records to be returned by this query. Limit(int) // Offset to start from. Offset(int) // Unique configures the query builder to filter duplicate records. Unique(bool) // Order specifies how the records should be ordered. Order(...func(*sql.Selector)) // WhereP appends storage-level predicates to the query builder. Using this method, users // can use type-assertion to append predicates that do not depend on any generated package. WhereP(...func(*sql.Selector)) }
The Query interface represents an operation that queries a graph. By using this interface, users can write generic code that manipulates query builders of different types.
type StatusFunc ¶
The StatusFunc type is an adapter to allow the use of ordinary function as a Querier.
type StatusNamespaceFunc ¶
type StatusNamespaceFunc func(context.Context, *generated.StatusNamespaceQuery) (generated.Value, error)
The StatusNamespaceFunc type is an adapter to allow the use of ordinary function as a Querier.
type TraverseAnnotation ¶
type TraverseAnnotation func(context.Context, *generated.AnnotationQuery) error
The TraverseAnnotation type is an adapter to allow the use of ordinary function as Traverser.
type TraverseAnnotationNamespace ¶
type TraverseAnnotationNamespace func(context.Context, *generated.AnnotationNamespaceQuery) error
The TraverseAnnotationNamespace type is an adapter to allow the use of ordinary function as Traverser.
type TraverseFunc ¶
The TraverseFunc type is an adapter to allow the use of ordinary function as Traverser. If f is a function with the appropriate signature, TraverseFunc(f) is a Traverser that calls f.
type TraverseMetadata ¶
type TraverseMetadata func(context.Context, *generated.MetadataQuery) error
The TraverseMetadata type is an adapter to allow the use of ordinary function as Traverser.
type TraverseStatus ¶
type TraverseStatus func(context.Context, *generated.StatusQuery) error
The TraverseStatus type is an adapter to allow the use of ordinary function as Traverser.
type TraverseStatusNamespace ¶
type TraverseStatusNamespace func(context.Context, *generated.StatusNamespaceQuery) error
The TraverseStatusNamespace type is an adapter to allow the use of ordinary function as Traverser.