Skip to main content

Mesh

This is a mesh table

type Mesh implements Node {
id: ID!
name: String!
createdAt: GQLTDate!
updatedAt: GQLTDate!
rooms(
after: String
first: Int = 0
before: String
last: Int = 0
orderBy: [RoomOrderBy] = []
where: GQLTQueryRoomWhere
include: [GQLTRoomIncludeObject] = []
): RoomHasManyRoomsList
users(
after: String
first: Int = 0
before: String
last: Int = 0
orderBy: [UserOrderBy] = []
where: GQLTQueryUserWhere
include: [GQLTUserIncludeObject] = []
): UserBelongsToManyUsersList
addresses(
after: String
first: Int = 0
before: String
last: Int = 0
orderBy: [AddressOrderBy] = []
where: GQLTQueryAddressWhere
include: [GQLTAddressIncludeObject] = []
): AddressHasManyAddressesList
}

Fields#

id (ID!)#

The ID of an object

name (String!)#

This is a name of the mesh that will displayed.

createdAt (GQLTDate!)#

updatedAt (GQLTDate!)#

rooms (RoomHasManyRoomsList)#

If provided it will return results after the provided cursor

If provided the results will be the first ${amount} of records from provided cursor, if a cursor is not provided the results will be the first ${amount} of records.

If provided it will return results before the provided cursor

If provided the results will be the first ${amount} of records from provided cursor, if a cursor is not provided the results will be the last ${amount} of records.

If provided this will sort the results by the supplied column and direction

users (UserBelongsToManyUsersList)#

If provided it will return results after the provided cursor

If provided the results will be the first ${amount} of records from provided cursor, if a cursor is not provided the results will be the first ${amount} of records.

If provided it will return results before the provided cursor

If provided the results will be the first ${amount} of records from provided cursor, if a cursor is not provided the results will be the last ${amount} of records.

If provided this will sort the results by the supplied column and direction

addresses (AddressHasManyAddressesList)#

If provided it will return results after the provided cursor

If provided the results will be the first ${amount} of records from provided cursor, if a cursor is not provided the results will be the first ${amount} of records.

If provided it will return results before the provided cursor

If provided the results will be the first ${amount} of records from provided cursor, if a cursor is not provided the results will be the last ${amount} of records.

If provided this will sort the results by the supplied column and direction

Interfaces#

Node#

An object with an ID