mirror of
https://github.com/MetaFam/TheGame.git
synced 2026-04-24 03:00:09 -04:00
chore: update schema
This commit is contained in:
committed by
Scott Stevenson
parent
ab163d7e21
commit
8bfc73ebde
362
schema.graphql
362
schema.graphql
@@ -2884,36 +2884,6 @@ type mutation_root {
|
||||
"""
|
||||
delete_player_role_by_pk(player_id: uuid!, role: String!): player_role
|
||||
|
||||
"""
|
||||
insert data into the table: "quest_role"
|
||||
"""
|
||||
insert_quest_role(
|
||||
"""
|
||||
the rows to be inserted
|
||||
"""
|
||||
objects: [quest_role_insert_input!]!
|
||||
|
||||
"""
|
||||
on conflict condition
|
||||
"""
|
||||
on_conflict: quest_role_on_conflict
|
||||
): quest_role_mutation_response
|
||||
|
||||
"""
|
||||
insert a single row into the table: "quest_role"
|
||||
"""
|
||||
insert_quest_role_one(
|
||||
"""
|
||||
the row to be inserted
|
||||
"""
|
||||
object: quest_role_insert_input!
|
||||
|
||||
"""
|
||||
on conflict condition
|
||||
"""
|
||||
on_conflict: quest_role_on_conflict
|
||||
): quest_role
|
||||
|
||||
"""
|
||||
delete data from the table: "player_skill"
|
||||
"""
|
||||
@@ -2970,9 +2940,7 @@ type mutation_root {
|
||||
delete data from the table: "quest_role"
|
||||
"""
|
||||
delete_quest_role(
|
||||
"""
|
||||
filter the rows which have to be deleted
|
||||
"""
|
||||
"""filter the rows which have to be deleted"""
|
||||
where: quest_role_bool_exp!
|
||||
): quest_role_mutation_response
|
||||
|
||||
@@ -3491,6 +3459,28 @@ type mutation_root {
|
||||
on_conflict: quest_on_conflict
|
||||
): quest
|
||||
|
||||
"""
|
||||
insert data into the table: "quest_role"
|
||||
"""
|
||||
insert_quest_role(
|
||||
"""the rows to be inserted"""
|
||||
objects: [quest_role_insert_input!]!
|
||||
|
||||
"""on conflict condition"""
|
||||
on_conflict: quest_role_on_conflict
|
||||
): quest_role_mutation_response
|
||||
|
||||
"""
|
||||
insert a single row into the table: "quest_role"
|
||||
"""
|
||||
insert_quest_role_one(
|
||||
"""the row to be inserted"""
|
||||
object: quest_role_insert_input!
|
||||
|
||||
"""on conflict condition"""
|
||||
on_conflict: quest_role_on_conflict
|
||||
): quest_role
|
||||
|
||||
"""
|
||||
insert data into the table: "quest_skill"
|
||||
"""
|
||||
@@ -3575,42 +3565,6 @@ type mutation_root {
|
||||
pk_columns: AccountType_pk_columns_input!
|
||||
): AccountType
|
||||
|
||||
"""
|
||||
update data of the table: "quest_role"
|
||||
"""
|
||||
update_quest_role(
|
||||
"""
|
||||
increments the integer columns with given value of the filtered values
|
||||
"""
|
||||
_inc: quest_role_inc_input
|
||||
|
||||
"""
|
||||
sets the columns of the filtered rows to the given values
|
||||
"""
|
||||
_set: quest_role_set_input
|
||||
|
||||
"""
|
||||
filter the rows which have to be updated
|
||||
"""
|
||||
where: quest_role_bool_exp!
|
||||
): quest_role_mutation_response
|
||||
|
||||
"""
|
||||
update single row of the table: "quest_role"
|
||||
"""
|
||||
update_quest_role_by_pk(
|
||||
"""
|
||||
increments the integer columns with given value of the filtered values
|
||||
"""
|
||||
_inc: quest_role_inc_input
|
||||
|
||||
"""
|
||||
sets the columns of the filtered rows to the given values
|
||||
"""
|
||||
_set: quest_role_set_input
|
||||
pk_columns: quest_role_pk_columns_input!
|
||||
): quest_role
|
||||
|
||||
"""
|
||||
update data of the table: "ColorAspect"
|
||||
"""
|
||||
@@ -4108,6 +4062,32 @@ type mutation_root {
|
||||
pk_columns: quest_completion_pk_columns_input!
|
||||
): quest_completion
|
||||
|
||||
"""
|
||||
update data of the table: "quest_role"
|
||||
"""
|
||||
update_quest_role(
|
||||
"""increments the integer columns with given value of the filtered values"""
|
||||
_inc: quest_role_inc_input
|
||||
|
||||
"""sets the columns of the filtered rows to the given values"""
|
||||
_set: quest_role_set_input
|
||||
|
||||
"""filter the rows which have to be updated"""
|
||||
where: quest_role_bool_exp!
|
||||
): quest_role_mutation_response
|
||||
|
||||
"""
|
||||
update single row of the table: "quest_role"
|
||||
"""
|
||||
update_quest_role_by_pk(
|
||||
"""increments the integer columns with given value of the filtered values"""
|
||||
_inc: quest_role_inc_input
|
||||
|
||||
"""sets the columns of the filtered rows to the given values"""
|
||||
_set: quest_role_set_input
|
||||
pk_columns: quest_role_pk_columns_input!
|
||||
): quest_role
|
||||
|
||||
"""
|
||||
update data of the table: "quest_skill"
|
||||
"""
|
||||
@@ -6006,14 +5986,10 @@ input PlayerRole_pk_columns_input {
|
||||
select columns of table "PlayerRole"
|
||||
"""
|
||||
enum PlayerRole_select_column {
|
||||
"""
|
||||
column name
|
||||
"""
|
||||
"""column name"""
|
||||
basic
|
||||
|
||||
"""
|
||||
column name
|
||||
"""
|
||||
"""column name"""
|
||||
description
|
||||
|
||||
"""column name"""
|
||||
@@ -6037,14 +6013,10 @@ input PlayerRole_set_input {
|
||||
update columns of table "PlayerRole"
|
||||
"""
|
||||
enum PlayerRole_update_column {
|
||||
"""
|
||||
column name
|
||||
"""
|
||||
"""column name"""
|
||||
basic
|
||||
|
||||
"""
|
||||
column name
|
||||
"""
|
||||
"""column name"""
|
||||
description
|
||||
|
||||
"""column name"""
|
||||
@@ -7653,29 +7625,19 @@ type query_root {
|
||||
fetch data from the table: "quest_role"
|
||||
"""
|
||||
quest_role(
|
||||
"""
|
||||
distinct select on columns
|
||||
"""
|
||||
"""distinct select on columns"""
|
||||
distinct_on: [quest_role_select_column!]
|
||||
|
||||
"""
|
||||
limit the number of rows returned
|
||||
"""
|
||||
"""limit the number of rows returned"""
|
||||
limit: Int
|
||||
|
||||
"""
|
||||
skip the first n rows. Use only with order_by
|
||||
"""
|
||||
"""skip the first n rows. Use only with order_by"""
|
||||
offset: Int
|
||||
|
||||
"""
|
||||
sort the rows by one or more columns
|
||||
"""
|
||||
"""sort the rows by one or more columns"""
|
||||
order_by: [quest_role_order_by!]
|
||||
|
||||
"""
|
||||
filter the rows returned
|
||||
"""
|
||||
"""filter the rows returned"""
|
||||
where: quest_role_bool_exp
|
||||
): [quest_role!]!
|
||||
|
||||
@@ -7683,35 +7645,23 @@ type query_root {
|
||||
fetch aggregated fields from the table: "quest_role"
|
||||
"""
|
||||
quest_role_aggregate(
|
||||
"""
|
||||
distinct select on columns
|
||||
"""
|
||||
"""distinct select on columns"""
|
||||
distinct_on: [quest_role_select_column!]
|
||||
|
||||
"""
|
||||
limit the number of rows returned
|
||||
"""
|
||||
"""limit the number of rows returned"""
|
||||
limit: Int
|
||||
|
||||
"""
|
||||
skip the first n rows. Use only with order_by
|
||||
"""
|
||||
"""skip the first n rows. Use only with order_by"""
|
||||
offset: Int
|
||||
|
||||
"""
|
||||
sort the rows by one or more columns
|
||||
"""
|
||||
"""sort the rows by one or more columns"""
|
||||
order_by: [quest_role_order_by!]
|
||||
|
||||
"""
|
||||
filter the rows returned
|
||||
"""
|
||||
"""filter the rows returned"""
|
||||
where: quest_role_bool_exp
|
||||
): quest_role_aggregate!
|
||||
|
||||
"""
|
||||
fetch data from the table: "quest_role" using primary key columns
|
||||
"""
|
||||
"""fetch data from the table: "quest_role" using primary key columns"""
|
||||
quest_role_by_pk(quest_id: uuid!, role: String!): quest_role
|
||||
|
||||
"""
|
||||
@@ -7860,69 +7810,43 @@ type quest {
|
||||
where: quest_completion_bool_exp
|
||||
): quest_completion_aggregate!
|
||||
|
||||
"""
|
||||
An array relationship
|
||||
"""
|
||||
"""An array relationship"""
|
||||
quest_roles(
|
||||
"""
|
||||
distinct select on columns
|
||||
"""
|
||||
"""distinct select on columns"""
|
||||
distinct_on: [quest_role_select_column!]
|
||||
|
||||
"""
|
||||
limit the number of rows returned
|
||||
"""
|
||||
"""limit the number of rows returned"""
|
||||
limit: Int
|
||||
|
||||
"""
|
||||
skip the first n rows. Use only with order_by
|
||||
"""
|
||||
"""skip the first n rows. Use only with order_by"""
|
||||
offset: Int
|
||||
|
||||
"""
|
||||
sort the rows by one or more columns
|
||||
"""
|
||||
"""sort the rows by one or more columns"""
|
||||
order_by: [quest_role_order_by!]
|
||||
|
||||
"""
|
||||
filter the rows returned
|
||||
"""
|
||||
"""filter the rows returned"""
|
||||
where: quest_role_bool_exp
|
||||
): [quest_role!]!
|
||||
|
||||
"""
|
||||
An aggregated array relationship
|
||||
"""
|
||||
"""An aggregated array relationship"""
|
||||
quest_roles_aggregate(
|
||||
"""
|
||||
distinct select on columns
|
||||
"""
|
||||
"""distinct select on columns"""
|
||||
distinct_on: [quest_role_select_column!]
|
||||
|
||||
"""
|
||||
limit the number of rows returned
|
||||
"""
|
||||
"""limit the number of rows returned"""
|
||||
limit: Int
|
||||
|
||||
"""
|
||||
skip the first n rows. Use only with order_by
|
||||
"""
|
||||
"""skip the first n rows. Use only with order_by"""
|
||||
offset: Int
|
||||
|
||||
"""
|
||||
sort the rows by one or more columns
|
||||
"""
|
||||
"""sort the rows by one or more columns"""
|
||||
order_by: [quest_role_order_by!]
|
||||
|
||||
"""
|
||||
filter the rows returned
|
||||
"""
|
||||
"""filter the rows returned"""
|
||||
where: quest_role_bool_exp
|
||||
): quest_role_aggregate!
|
||||
|
||||
"""
|
||||
An array relationship
|
||||
"""
|
||||
"""An array relationship"""
|
||||
quest_skills(
|
||||
"""distinct select on columns"""
|
||||
distinct_on: [quest_skill_select_column!]
|
||||
@@ -8057,9 +7981,7 @@ type quest_completion {
|
||||
"""An object relationship"""
|
||||
QuestCompletionStatus: QuestCompletionStatus!
|
||||
|
||||
"""
|
||||
An object relationship
|
||||
"""
|
||||
"""An object relationship"""
|
||||
completed: quest
|
||||
completedByPlayerId: uuid!
|
||||
id: uuid!
|
||||
@@ -8468,14 +8390,10 @@ input quest_pk_columns_input {
|
||||
columns and relationships of "quest_role"
|
||||
"""
|
||||
type quest_role {
|
||||
"""
|
||||
An object relationship
|
||||
"""
|
||||
"""An object relationship"""
|
||||
PlayerRole: PlayerRole!
|
||||
|
||||
"""
|
||||
An object relationship
|
||||
"""
|
||||
"""An object relationship"""
|
||||
quest: quest!
|
||||
quest_id: uuid!
|
||||
rank: Int
|
||||
@@ -8532,9 +8450,7 @@ input quest_role_arr_rel_insert_input {
|
||||
on_conflict: quest_role_on_conflict
|
||||
}
|
||||
|
||||
"""
|
||||
aggregate avg on columns
|
||||
"""
|
||||
"""aggregate avg on columns"""
|
||||
type quest_role_avg_fields {
|
||||
rank: Float
|
||||
}
|
||||
@@ -8564,9 +8480,7 @@ input quest_role_bool_exp {
|
||||
unique or primary key constraints on table "quest_role"
|
||||
"""
|
||||
enum quest_role_constraint {
|
||||
"""
|
||||
unique or primary key constraint
|
||||
"""
|
||||
"""unique or primary key constraint"""
|
||||
quest_role_pkey
|
||||
}
|
||||
|
||||
@@ -8588,9 +8502,7 @@ input quest_role_insert_input {
|
||||
role: String
|
||||
}
|
||||
|
||||
"""
|
||||
aggregate max on columns
|
||||
"""
|
||||
"""aggregate max on columns"""
|
||||
type quest_role_max_fields {
|
||||
quest_id: uuid
|
||||
rank: Int
|
||||
@@ -8606,9 +8518,7 @@ input quest_role_max_order_by {
|
||||
role: order_by
|
||||
}
|
||||
|
||||
"""
|
||||
aggregate min on columns
|
||||
"""
|
||||
"""aggregate min on columns"""
|
||||
type quest_role_min_fields {
|
||||
quest_id: uuid
|
||||
rank: Int
|
||||
@@ -8628,14 +8538,10 @@ input quest_role_min_order_by {
|
||||
response of any mutation on the table "quest_role"
|
||||
"""
|
||||
type quest_role_mutation_response {
|
||||
"""
|
||||
number of affected rows by the mutation
|
||||
"""
|
||||
"""number of affected rows by the mutation"""
|
||||
affected_rows: Int!
|
||||
|
||||
"""
|
||||
data of the affected rows by the mutation
|
||||
"""
|
||||
"""data of the affected rows by the mutation"""
|
||||
returning: [quest_role!]!
|
||||
}
|
||||
|
||||
@@ -8679,19 +8585,13 @@ input quest_role_pk_columns_input {
|
||||
select columns of table "quest_role"
|
||||
"""
|
||||
enum quest_role_select_column {
|
||||
"""
|
||||
column name
|
||||
"""
|
||||
"""column name"""
|
||||
quest_id
|
||||
|
||||
"""
|
||||
column name
|
||||
"""
|
||||
"""column name"""
|
||||
rank
|
||||
|
||||
"""
|
||||
column name
|
||||
"""
|
||||
"""column name"""
|
||||
role
|
||||
}
|
||||
|
||||
@@ -8704,9 +8604,7 @@ input quest_role_set_input {
|
||||
role: String
|
||||
}
|
||||
|
||||
"""
|
||||
aggregate stddev on columns
|
||||
"""
|
||||
"""aggregate stddev on columns"""
|
||||
type quest_role_stddev_fields {
|
||||
rank: Float
|
||||
}
|
||||
@@ -8718,9 +8616,7 @@ input quest_role_stddev_order_by {
|
||||
rank: order_by
|
||||
}
|
||||
|
||||
"""
|
||||
aggregate stddev_pop on columns
|
||||
"""
|
||||
"""aggregate stddev_pop on columns"""
|
||||
type quest_role_stddev_pop_fields {
|
||||
rank: Float
|
||||
}
|
||||
@@ -8732,9 +8628,7 @@ input quest_role_stddev_pop_order_by {
|
||||
rank: order_by
|
||||
}
|
||||
|
||||
"""
|
||||
aggregate stddev_samp on columns
|
||||
"""
|
||||
"""aggregate stddev_samp on columns"""
|
||||
type quest_role_stddev_samp_fields {
|
||||
rank: Float
|
||||
}
|
||||
@@ -8746,9 +8640,7 @@ input quest_role_stddev_samp_order_by {
|
||||
rank: order_by
|
||||
}
|
||||
|
||||
"""
|
||||
aggregate sum on columns
|
||||
"""
|
||||
"""aggregate sum on columns"""
|
||||
type quest_role_sum_fields {
|
||||
rank: Int
|
||||
}
|
||||
@@ -8764,25 +8656,17 @@ input quest_role_sum_order_by {
|
||||
update columns of table "quest_role"
|
||||
"""
|
||||
enum quest_role_update_column {
|
||||
"""
|
||||
column name
|
||||
"""
|
||||
"""column name"""
|
||||
quest_id
|
||||
|
||||
"""
|
||||
column name
|
||||
"""
|
||||
"""column name"""
|
||||
rank
|
||||
|
||||
"""
|
||||
column name
|
||||
"""
|
||||
"""column name"""
|
||||
role
|
||||
}
|
||||
|
||||
"""
|
||||
aggregate var_pop on columns
|
||||
"""
|
||||
"""aggregate var_pop on columns"""
|
||||
type quest_role_var_pop_fields {
|
||||
rank: Float
|
||||
}
|
||||
@@ -8794,9 +8678,7 @@ input quest_role_var_pop_order_by {
|
||||
rank: order_by
|
||||
}
|
||||
|
||||
"""
|
||||
aggregate var_samp on columns
|
||||
"""
|
||||
"""aggregate var_samp on columns"""
|
||||
type quest_role_var_samp_fields {
|
||||
rank: Float
|
||||
}
|
||||
@@ -8808,9 +8690,7 @@ input quest_role_var_samp_order_by {
|
||||
rank: order_by
|
||||
}
|
||||
|
||||
"""
|
||||
aggregate variance on columns
|
||||
"""
|
||||
"""aggregate variance on columns"""
|
||||
type quest_role_variance_fields {
|
||||
rank: Float
|
||||
}
|
||||
@@ -11266,29 +11146,19 @@ type subscription_root {
|
||||
fetch data from the table: "quest_role"
|
||||
"""
|
||||
quest_role(
|
||||
"""
|
||||
distinct select on columns
|
||||
"""
|
||||
"""distinct select on columns"""
|
||||
distinct_on: [quest_role_select_column!]
|
||||
|
||||
"""
|
||||
limit the number of rows returned
|
||||
"""
|
||||
"""limit the number of rows returned"""
|
||||
limit: Int
|
||||
|
||||
"""
|
||||
skip the first n rows. Use only with order_by
|
||||
"""
|
||||
"""skip the first n rows. Use only with order_by"""
|
||||
offset: Int
|
||||
|
||||
"""
|
||||
sort the rows by one or more columns
|
||||
"""
|
||||
"""sort the rows by one or more columns"""
|
||||
order_by: [quest_role_order_by!]
|
||||
|
||||
"""
|
||||
filter the rows returned
|
||||
"""
|
||||
"""filter the rows returned"""
|
||||
where: quest_role_bool_exp
|
||||
): [quest_role!]!
|
||||
|
||||
@@ -11296,35 +11166,23 @@ type subscription_root {
|
||||
fetch aggregated fields from the table: "quest_role"
|
||||
"""
|
||||
quest_role_aggregate(
|
||||
"""
|
||||
distinct select on columns
|
||||
"""
|
||||
"""distinct select on columns"""
|
||||
distinct_on: [quest_role_select_column!]
|
||||
|
||||
"""
|
||||
limit the number of rows returned
|
||||
"""
|
||||
"""limit the number of rows returned"""
|
||||
limit: Int
|
||||
|
||||
"""
|
||||
skip the first n rows. Use only with order_by
|
||||
"""
|
||||
"""skip the first n rows. Use only with order_by"""
|
||||
offset: Int
|
||||
|
||||
"""
|
||||
sort the rows by one or more columns
|
||||
"""
|
||||
"""sort the rows by one or more columns"""
|
||||
order_by: [quest_role_order_by!]
|
||||
|
||||
"""
|
||||
filter the rows returned
|
||||
"""
|
||||
"""filter the rows returned"""
|
||||
where: quest_role_bool_exp
|
||||
): quest_role_aggregate!
|
||||
|
||||
"""
|
||||
fetch data from the table: "quest_role" using primary key columns
|
||||
"""
|
||||
"""fetch data from the table: "quest_role" using primary key columns"""
|
||||
quest_role_by_pk(quest_id: uuid!, role: String!): quest_role
|
||||
|
||||
"""
|
||||
|
||||
Reference in New Issue
Block a user