Skip to main content

Get Outlets

Getting all your outlets​

This returns all the outlets and organizations. That are attached to the API KEY.

Parameters​

  • take: This is required. It is the number of outlets to return.
  • skip: This is optional. It is the number of outlets to skip.
  • where: This is optional. It is the filter to apply to the outlets.

Query​

query MyOutlets($take: Int, $skip: Int) {
client {
organisationPermissions {
organisation {
outlets(take: $take, skip: $skip, where: $where) {
id
name
}
}
}
}
}

Graphiql​

Get outlets that has no menu items​

Get outlets that has at least one menu item​