UserDetailQuery class

ユーザー詳細のQueryです。

Inheritance

Constructors

UserDetailQuery(UserDetailQueryPlatform platform)

Properties

hashCode int
The hash code for this object.
no setterinherited
limit int?
取得件数です。
getter/setter pairinherited
offset int?
取得データの開始位置です。
getter/setter pairinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

asc(String columnName) → void
昇順のソート条件を追加します。
inherited
betweenExclude(String columnName, String from, String to) → void
範囲検索条件の検索条件を追加します。
inherited
betweenInclude(String columnName, String from, String to) → void
範囲検索条件の検索条件を追加します。
inherited
containedIn(String columnName, List<String> values) → void
要素リスト一致検索条件を追加します。
inherited
contains(String columnName, String value) → void
テキストの中間一致検索条件を追加します。
inherited
containsInArray(String columnName, List<String> values) → void
チェックボックス項目の要素リスト一致検索条件を追加します。
inherited
delete() Future<int>
ユーザー詳細を削除します。
desc(String columnName) → void
降順のソート条件を追加します。
inherited
endsWith(String columnName, String value) → void
テキストの後方一致検索条件を追加します。
inherited
equalTo(String columnName, String value) → void
一致検索条件を追加します。
inherited
find() Future<UserDetailResult>
ユーザー詳細を検索します。
findById(String id) Future<UserDetail?>
ユーザー詳細をID(id)で検索します。
greaterThanOrEqualTo(String columnName, String value) → void
条件値以上の検索条件を追加します。
inherited
lessThanOrEqualTo(String columnName, String value) → void
条件値以下の検索条件を追加します。
inherited
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
notContainedIn(String columnName, List<String> values) → void
要素リスト不一致検索条件を追加します。
inherited
notEqualTo(String columnName, String value) → void
不一致検索条件を追加します。
inherited
orderByFavoriteCount({Direction direction = Direction.asc}) → void
お気に入り件数でソートします。
orderByFavoriteUpdatedAt({Direction direction = Direction.asc}) → void
お気に入り更新日時でソートします。
shared({List<VisibilityType>? visibility}) Future<UserDetailResult>
公開されているユーザー詳細を検索します。
sharedById(String id, {List<VisibilityType>? visibility}) Future<UserDetail?>
公開されているユーザー詳細をID(id)で検索します。
startsWith(String columnName, String value) → void
テキストの前方一致検索条件を追加します。
inherited
toString() String
A string representation of this object.
inherited
withFavorite({bool? byMe}) → void
お気に入り情報(UserDetail.sysFavorite)を検索結果に含めます。
withFavoriteSummary() → void
お気に入り集計情報(UserDetail.sysFavoriteSum)を検索結果に含めます。

Operators

operator ==(Object other) bool
The equality operator.
inherited