Magidoc

users
Subscription

fetch data from the table: "users"

Arguments

#

distinct_on

distinct select on columns

limit

limit the nuber of rows returned

offset

skip the first n rows. Use only with order_by

order_by

sort the rows by one or more columns

where

filter the rows returned

Response

#

Returns [users !]!.

Example

#

    subscription (
  $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
  }
}

  

3