users

fetch data from the table: "users"

Return type

[users!]!

Arguments

distinct_on

[users_select_column!] - distinct select on columns

limit

Int - limit the nuber of rows returned

offset

Int - skip the first n rows. Use only with order_by

order_by

[users_order_by!] - sort the rows by one or more columns

where

users_bool_exp - filter the rows returned

Request

subscription users($distinct_on: [users_select_column!], $limit: Int, $offset: Int, $order_by: [users_order_by!], $where: users_bool_exp) {
  users(
    distinct_on: $distinct_on
    limit: $limit
    offset: $offset
    order_by: $order_by
    where: $where
  ) {
    id
    name
    rocket
    timestamp
    twitter
  }
}