File: predicate.go

package info (click to toggle)
golang-entgo-ent 0.11.3-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 21,976 kB
  • sloc: javascript: 641; makefile: 8; sql: 2
file content (50 lines) | stat: -rw-r--r-- 1,535 bytes parent folder | download | duplicates (2)
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
// 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"
)

// Friendship is the predicate function for friendship builders.
type Friendship func(*sql.Selector)

// Group is the predicate function for group builders.
type Group func(*sql.Selector)

// Relationship is the predicate function for relationship builders.
type Relationship func(*sql.Selector)

// RelationshipInfo is the predicate function for relationshipinfo builders.
type RelationshipInfo func(*sql.Selector)

// Role is the predicate function for role builders.
type Role func(*sql.Selector)

// RoleUser is the predicate function for roleuser builders.
type RoleUser func(*sql.Selector)

// Tag is the predicate function for tag builders.
type Tag func(*sql.Selector)

// Tweet is the predicate function for tweet builders.
type Tweet func(*sql.Selector)

// TweetLike is the predicate function for tweetlike builders.
type TweetLike func(*sql.Selector)

// TweetTag is the predicate function for tweettag builders.
type TweetTag func(*sql.Selector)

// User is the predicate function for user builders.
type User func(*sql.Selector)

// UserGroup is the predicate function for usergroup builders.
type UserGroup func(*sql.Selector)

// UserTweet is the predicate function for usertweet builders.
type UserTweet func(*sql.Selector)