minor: OptionsSite.query.gql

This commit is contained in:
2026-01-22 08:09:49 -05:00
parent 489ac82faa
commit 4492d760bb
4 changed files with 20 additions and 5 deletions

View File

@@ -1,6 +1,6 @@
{ {
"key": "group_options_site", "key": "group_options_site",
"title": "Options du site", "title": "Options - Site",
"fields": [ "fields": [
{ {
"key": "field_697220310aaaf", "key": "field_697220310aaaf",
@@ -56,5 +56,5 @@
"graphql_types": "", "graphql_types": "",
"acfe_meta": "", "acfe_meta": "",
"acfe_note": "", "acfe_note": "",
"modified": 1769087106 "modified": 1769087407
} }

View File

@@ -13,7 +13,7 @@ login( input: { provider: PASSWORD, credentials: { username: $username, password
authToken authToken
refreshToken refreshToken
user { user {
...AuthUser ... AuthUser
} }
} }
} }

View File

@@ -1,6 +1,10 @@
fragment GeneralSettings on GeneralSettings {
title
description
}
query GeneralSettings { query GeneralSettings {
generalSettings { generalSettings {
title ... GeneralSettings
description
} }
} }

View File

@@ -0,0 +1,11 @@
fragment SiteOptions on GroupSite_Fields {
email
}
query OptionsSite {
optionsSite {
groupSite {
... SiteOptions
}
}
}