Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions generated/schema.graphql
Original file line numberDiff line numberDiff line change
Expand Up@@ -22181,6 +22181,7 @@ type game_server_node_plugins {
id: uuid!
installed_at: timestamptz
last_error: String
path: String

"""An object relationship"""
plugin: game_plugins
Expand DownExpand Up@@ -22271,6 +22272,7 @@ input game_server_node_plugins_bool_exp {
id: uuid_comparison_exp
installed_at: timestamptz_comparison_exp
last_error: String_comparison_exp
path: String_comparison_exp
plugin: game_plugins_bool_exp
plugin_slug: String_comparison_exp
runtime: e_plugin_runtimes_enum_comparison_exp
Expand DownExpand Up@@ -22308,6 +22310,7 @@ input game_server_node_plugins_insert_input {
id: uuid
installed_at: timestamptz
last_error: String
path: String
plugin: game_plugins_obj_rel_insert_input
plugin_slug: String
runtime: e_plugin_runtimes_enum
Expand All@@ -22325,6 +22328,7 @@ type game_server_node_plugins_max_fields {
id: uuid
installed_at: timestamptz
last_error: String
path: String
plugin_slug: String
source: String
updated_at: timestamptz
Expand All@@ -22341,6 +22345,7 @@ input game_server_node_plugins_max_order_by {
id: order_by
installed_at: order_by
last_error: order_by
path: order_by
plugin_slug: order_by
source: order_by
updated_at: order_by
Expand All@@ -22355,6 +22360,7 @@ type game_server_node_plugins_min_fields {
id: uuid
installed_at: timestamptz
last_error: String
path: String
plugin_slug: String
source: String
updated_at: timestamptz
Expand All@@ -22371,6 +22377,7 @@ input game_server_node_plugins_min_order_by {
id: order_by
installed_at: order_by
last_error: order_by
path: order_by
plugin_slug: order_by
source: order_by
updated_at: order_by
Expand DownExpand Up@@ -22408,6 +22415,7 @@ input game_server_node_plugins_order_by {
id: order_by
installed_at: order_by
last_error: order_by
path: order_by
plugin: game_plugins_order_by
plugin_slug: order_by
runtime: order_by
Expand DownExpand Up@@ -22450,6 +22458,9 @@ enum game_server_node_plugins_select_column {
"""column name"""
last_error

"""column name"""
path

"""column name"""
plugin_slug

Expand DownExpand Up@@ -22497,6 +22508,7 @@ input game_server_node_plugins_set_input {
id: uuid
installed_at: timestamptz
last_error: String
path: String
plugin_slug: String
runtime: e_plugin_runtimes_enum
source: String
Expand DownExpand Up@@ -22526,6 +22538,7 @@ input game_server_node_plugins_stream_cursor_value_input {
id: uuid
installed_at: timestamptz
last_error: String
path: String
plugin_slug: String
runtime: e_plugin_runtimes_enum
source: String
Expand DownExpand Up@@ -22562,6 +22575,9 @@ enum game_server_node_plugins_update_column {
"""column name"""
last_error

"""column name"""
path

"""column name"""
plugin_slug

Expand DownExpand Up@@ -30922,6 +30938,7 @@ columns and relationships of "maps"
"""
type maps {
active_pool: Boolean!
deleted_at: timestamptz

"""An object relationship"""
e_match_type: e_match_types!
Expand DownExpand Up@@ -31078,6 +31095,7 @@ input maps_bool_exp {
_not: maps_bool_exp
_or: [maps_bool_exp!]
active_pool: Boolean_comparison_exp
deleted_at: timestamptz_comparison_exp
e_match_type: e_match_types_bool_exp
enabled: Boolean_comparison_exp
id: uuid_comparison_exp
Expand DownExpand Up@@ -31113,6 +31131,7 @@ input type for inserting data into table "maps"
"""
input maps_insert_input {
active_pool: Boolean
deleted_at: timestamptz
e_match_type: e_match_types_obj_rel_insert_input
enabled: Boolean
id: uuid
Expand All@@ -31128,6 +31147,7 @@ input maps_insert_input {

"""aggregate max on columns"""
type maps_max_fields {
deleted_at: timestamptz
id: uuid
label: String
name: String
Expand All@@ -31140,6 +31160,7 @@ type maps_max_fields {
order by max() on columns of table "maps"
"""
input maps_max_order_by {
deleted_at: order_by
id: order_by
label: order_by
name: order_by
Expand All@@ -31150,6 +31171,7 @@ input maps_max_order_by {

"""aggregate min on columns"""
type maps_min_fields {
deleted_at: timestamptz
id: uuid
label: String
name: String
Expand All@@ -31162,6 +31184,7 @@ type maps_min_fields {
order by min() on columns of table "maps"
"""
input maps_min_order_by {
deleted_at: order_by
id: order_by
label: order_by
name: order_by
Expand DownExpand Up@@ -31203,6 +31226,7 @@ input maps_on_conflict {
"""Ordering options when selecting data from "maps"."""
input maps_order_by {
active_pool: order_by
deleted_at: order_by
e_match_type: e_match_types_order_by
enabled: order_by
id: order_by
Expand All@@ -31228,6 +31252,9 @@ enum maps_select_column {
"""column name"""
active_pool

"""column name"""
deleted_at

"""column name"""
enabled

Expand DownExpand Up@@ -31280,6 +31307,7 @@ input type for updating data in table "maps"
"""
input maps_set_input {
active_pool: Boolean
deleted_at: timestamptz
enabled: Boolean
id: uuid
label: String
Expand All@@ -31304,6 +31332,7 @@ input maps_stream_cursor_input {
"""Initial value of the column from where the streaming should start"""
input maps_stream_cursor_value_input {
active_pool: Boolean
deleted_at: timestamptz
enabled: Boolean
id: uuid
label: String
Expand All@@ -31321,6 +31350,9 @@ enum maps_update_column {
"""column name"""
active_pool

"""column name"""
deleted_at

"""column name"""
enabled

Expand Down
Loading
Loading