1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
|
// Copyright 2019-present Facebook Inc. All rights reserved.
// This source code is licensed under the Apache 2.0 license found
// in the LICENSE file in the root directory of this source tree.
// Code generated by ent, DO NOT EDIT.
package predicate
import (
"entgo.io/ent/dialect/sql"
)
// Account is the predicate function for account builders.
type Account func(*sql.Selector)
// Blob is the predicate function for blob builders.
type Blob func(*sql.Selector)
// BlobLink is the predicate function for bloblink builders.
type BlobLink func(*sql.Selector)
// Car is the predicate function for car builders.
type Car func(*sql.Selector)
// Device is the predicate function for device builders.
type Device func(*sql.Selector)
// Doc is the predicate function for doc builders.
type Doc func(*sql.Selector)
// Group is the predicate function for group builders.
type Group func(*sql.Selector)
// IntSID is the predicate function for intsid builders.
type IntSID func(*sql.Selector)
// Link is the predicate function for link builders.
type Link func(*sql.Selector)
// MixinID is the predicate function for mixinid builders.
type MixinID func(*sql.Selector)
// Note is the predicate function for note builders.
type Note func(*sql.Selector)
// Other is the predicate function for other builders.
type Other func(*sql.Selector)
// Pet is the predicate function for pet builders.
type Pet func(*sql.Selector)
// Revision is the predicate function for revision builders.
type Revision func(*sql.Selector)
// Session is the predicate function for session builders.
type Session func(*sql.Selector)
// Token is the predicate function for token builders.
type Token func(*sql.Selector)
// User is the predicate function for user builders.
type User func(*sql.Selector)
|