use axis instead os subjects on new assessement page
This commit is contained in:
57
app/javascript/__generated__/schema.graphql
generated
57
app/javascript/__generated__/schema.graphql
generated
@@ -4,6 +4,42 @@ type Axis {
|
||||
subjects: [Subject!]!
|
||||
}
|
||||
|
||||
"""
|
||||
The connection type for Axis.
|
||||
"""
|
||||
type AxisConnection {
|
||||
"""
|
||||
A list of edges.
|
||||
"""
|
||||
edges: [AxisEdge!]!
|
||||
|
||||
"""
|
||||
A list of nodes.
|
||||
"""
|
||||
nodes: [Axis!]!
|
||||
|
||||
"""
|
||||
Information to aid in pagination.
|
||||
"""
|
||||
pageInfo: PageInfo!
|
||||
totalCount: Int!
|
||||
}
|
||||
|
||||
"""
|
||||
An edge in a connection.
|
||||
"""
|
||||
type AxisEdge {
|
||||
"""
|
||||
A cursor for use in pagination.
|
||||
"""
|
||||
cursor: String!
|
||||
|
||||
"""
|
||||
The item at the end of the edge.
|
||||
"""
|
||||
node: Axis
|
||||
}
|
||||
|
||||
type Category {
|
||||
id: ID!
|
||||
name: String!
|
||||
@@ -238,6 +274,27 @@ type PageInfo {
|
||||
}
|
||||
|
||||
type Query {
|
||||
axes(
|
||||
"""
|
||||
Returns the elements in the list that come after the specified cursor.
|
||||
"""
|
||||
after: String
|
||||
|
||||
"""
|
||||
Returns the elements in the list that come before the specified cursor.
|
||||
"""
|
||||
before: String
|
||||
|
||||
"""
|
||||
Returns the first _n_ elements from the list.
|
||||
"""
|
||||
first: Int
|
||||
|
||||
"""
|
||||
Returns the last _n_ elements from the list.
|
||||
"""
|
||||
last: Int
|
||||
): AxisConnection!
|
||||
categories(
|
||||
"""
|
||||
Returns the elements in the list that come after the specified cursor.
|
||||
|
||||
Reference in New Issue
Block a user