OBJECT

ServerModelsByDeploymentServerIdAndFoodModelIdManyToManyEdge

A Model edge in the connection, with data from Deployment.

link GraphQL Schema definition

  • type ServerModelsByDeploymentServerIdAndFoodModelIdManyToManyEdge {
  • # A cursor for use in pagination.
  • cursor: Cursor
  • # The `Model` at the end of the edge.
  • node: Model
  • # Reads and enables pagination through a set of `Deployment`.
  • #
  • # Arguments
  • # first: Only read the first `n` values of the set.
  • # last: Only read the last `n` values of the set.
  • # offset: Skip the first `n` values from our `after` cursor, an
  • # alternative to cursor
  • # based pagination. May not be used with `last`.
  • # before: Read all values in the set before (above) this cursor.
  • # after: Read all values in the set after (below) this cursor.
  • # orderBy: The method to use when ordering `Deployment`.
  • # condition: A condition to be used in determining which values
  • # should be returned by the collection.
  • # filter: A filter to be used in determining which values should
  • # be returned by the collection.
  • deploymentsByFoodModelId(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [DeploymentsOrderBy!],
  • condition: DeploymentCondition,
  • filter: DeploymentFilter
  • ): DeploymentsConnection!
  • }