Sie sind auf Seite 1von 2

type query {

todos(
distinct_on: [todos_select_column!]
limit: Int
offset: Int
order_by: [todos_order_by!]
where: todos_bool_exp
): [todos!]!

todos_by_pk(id: Int!): todos

users(
distinct_on: [users_select_column!]
limit: Int
offset: Int
order_by: [users_order_by!]
where: users_bool_exp
): [users!]!

users_by_pk(id: String!): users


}

input todos_order_by {
created_at: order_by
id: order_by
is_completed: order_by
is_public: order_by
title: order_by
user: users_order_by
user_id: order_by
}

input todos_bool_exp {
_and: [online_users_bool_exp]
_not: online_users_bool_exp
_or: [online_users_bool_exp]
id: text_comparison_exp
last_seen: timestamptz_comparison_exp
user: users_bool_exp
}

input user_order_by {
id: order_by
name: order_by
}

input users_bool_exp {
_and: [users_bool_exp]
_not: users_bool_exp
_or: [users_bool_exp]
id: text_comparison_exp
name: text_comparison_exp
todos: todos_bool_exp
}

Das könnte Ihnen auch gefallen