Skip to content

Commit 6b4c872

Browse files
committed
Sync documentation of main branch
1 parent 608093a commit 6b4c872

File tree

4 files changed

+171
-174
lines changed

4 files changed

+171
-174
lines changed

_generated-doc/main/config/quarkus-all-config.adoc

Lines changed: 57 additions & 57 deletions
Original file line numberDiff line numberDiff line change
@@ -86830,48 +86830,6 @@ endif::add-copy-button-to-env-var[]
8683086830
|list of string
8683186831
|
8683286832

86833-
a|icon:lock[title=Fixed at build time] [[quarkus-smallrye-graphql_quarkus-smallrye-graphql-show-runtime-exception-message]] [.property-path]##link:#quarkus-smallrye-graphql_quarkus-smallrye-graphql-show-runtime-exception-message[`quarkus.smallrye-graphql.show-runtime-exception-message`]##
86834-
ifdef::add-copy-button-to-config-props[]
86835-
config_property_copy_button:+++quarkus.smallrye-graphql.show-runtime-exception-message+++[]
86836-
endif::add-copy-button-to-config-props[]
86837-
86838-
86839-
[.description]
86840-
--
86841-
List of Runtime Exceptions class names that should show the error message. By default, Runtime Exception messages will be hidden and a generic `Server Error` message will be returned.
86842-
86843-
86844-
ifdef::add-copy-button-to-env-var[]
86845-
Environment variable: env_var_with_copy_button:+++QUARKUS_SMALLRYE_GRAPHQL_SHOW_RUNTIME_EXCEPTION_MESSAGE+++[]
86846-
endif::add-copy-button-to-env-var[]
86847-
ifndef::add-copy-button-to-env-var[]
86848-
Environment variable: `+++QUARKUS_SMALLRYE_GRAPHQL_SHOW_RUNTIME_EXCEPTION_MESSAGE+++`
86849-
endif::add-copy-button-to-env-var[]
86850-
--
86851-
|list of string
86852-
|
86853-
86854-
a|icon:lock[title=Fixed at build time] [[quarkus-smallrye-graphql_quarkus-smallrye-graphql-hide-checked-exception-message]] [.property-path]##link:#quarkus-smallrye-graphql_quarkus-smallrye-graphql-hide-checked-exception-message[`quarkus.smallrye-graphql.hide-checked-exception-message`]##
86855-
ifdef::add-copy-button-to-config-props[]
86856-
config_property_copy_button:+++quarkus.smallrye-graphql.hide-checked-exception-message+++[]
86857-
endif::add-copy-button-to-config-props[]
86858-
86859-
86860-
[.description]
86861-
--
86862-
List of Checked Exceptions class names that should hide the error message. By default, Checked Exception messages will show the exception message.
86863-
86864-
86865-
ifdef::add-copy-button-to-env-var[]
86866-
Environment variable: env_var_with_copy_button:+++QUARKUS_SMALLRYE_GRAPHQL_HIDE_CHECKED_EXCEPTION_MESSAGE+++[]
86867-
endif::add-copy-button-to-env-var[]
86868-
ifndef::add-copy-button-to-env-var[]
86869-
Environment variable: `+++QUARKUS_SMALLRYE_GRAPHQL_HIDE_CHECKED_EXCEPTION_MESSAGE+++`
86870-
endif::add-copy-button-to-env-var[]
86871-
--
86872-
|list of string
86873-
|
86874-
8687586833
a|icon:lock[title=Fixed at build time] [[quarkus-smallrye-graphql_quarkus-smallrye-graphql-default-error-message]] [.property-path]##link:#quarkus-smallrye-graphql_quarkus-smallrye-graphql-default-error-message[`quarkus.smallrye-graphql.default-error-message`]##
8687686834
ifdef::add-copy-button-to-config-props[]
8687786835
config_property_copy_button:+++quarkus.smallrye-graphql.default-error-message+++[]
@@ -87250,7 +87208,49 @@ endif::add-copy-button-to-env-var[]
8725087208
a|list of `uuid`
8725187209
|
8725287210

87253-
a|icon:lock[title=Fixed at build time] [[quarkus-smallrye-graphql_quarkus-smallrye-graphql-exclude-null-fields-in-responses]] [.property-path]##link:#quarkus-smallrye-graphql_quarkus-smallrye-graphql-exclude-null-fields-in-responses[`quarkus.smallrye-graphql.exclude-null-fields-in-responses`]##
87211+
a| [[quarkus-smallrye-graphql_quarkus-smallrye-graphql-ui-enable]] [.property-path]##link:#quarkus-smallrye-graphql_quarkus-smallrye-graphql-ui-enable[`quarkus.smallrye-graphql.ui.enable`]##
87212+
ifdef::add-copy-button-to-config-props[]
87213+
config_property_copy_button:+++quarkus.smallrye-graphql.ui.enable+++[]
87214+
endif::add-copy-button-to-config-props[]
87215+
87216+
87217+
[.description]
87218+
--
87219+
If GraphQL UI should be enabled. By default, GraphQL UI is enabled if it is included (see `always-include`).
87220+
87221+
87222+
ifdef::add-copy-button-to-env-var[]
87223+
Environment variable: env_var_with_copy_button:+++QUARKUS_SMALLRYE_GRAPHQL_UI_ENABLE+++[]
87224+
endif::add-copy-button-to-env-var[]
87225+
ifndef::add-copy-button-to-env-var[]
87226+
Environment variable: `+++QUARKUS_SMALLRYE_GRAPHQL_UI_ENABLE+++`
87227+
endif::add-copy-button-to-env-var[]
87228+
--
87229+
|boolean
87230+
|`true`
87231+
87232+
a| [[quarkus-smallrye-graphql_quarkus-smallrye-graphql-field-visibility]] [.property-path]##link:#quarkus-smallrye-graphql_quarkus-smallrye-graphql-field-visibility[`quarkus.smallrye-graphql.field-visibility`]##
87233+
ifdef::add-copy-button-to-config-props[]
87234+
config_property_copy_button:+++quarkus.smallrye-graphql.field-visibility+++[]
87235+
endif::add-copy-button-to-config-props[]
87236+
87237+
87238+
[.description]
87239+
--
87240+
Specifies the field visibility for the GraphQL schema. This configuration item allows you to define comma-separated list of patterns (GraphQLType.GraphQLField). These patterns are used to determine which fields should be excluded from the schema. Special value `no-introspection` will disable introspection fields. For more info see link:https://smallrye.io/smallrye-graphql/docs/schema/field-visibility[graphql-java documentation]
87241+
87242+
87243+
ifdef::add-copy-button-to-env-var[]
87244+
Environment variable: env_var_with_copy_button:+++QUARKUS_SMALLRYE_GRAPHQL_FIELD_VISIBILITY+++[]
87245+
endif::add-copy-button-to-env-var[]
87246+
ifndef::add-copy-button-to-env-var[]
87247+
Environment variable: `+++QUARKUS_SMALLRYE_GRAPHQL_FIELD_VISIBILITY+++`
87248+
endif::add-copy-button-to-env-var[]
87249+
--
87250+
|string
87251+
|`default`
87252+
87253+
a| [[quarkus-smallrye-graphql_quarkus-smallrye-graphql-exclude-null-fields-in-responses]] [.property-path]##link:#quarkus-smallrye-graphql_quarkus-smallrye-graphql-exclude-null-fields-in-responses[`quarkus.smallrye-graphql.exclude-null-fields-in-responses`]##
8725487254
ifdef::add-copy-button-to-config-props[]
8725587255
config_property_copy_button:+++quarkus.smallrye-graphql.exclude-null-fields-in-responses+++[]
8725687256
endif::add-copy-button-to-config-props[]
@@ -87271,47 +87271,47 @@ endif::add-copy-button-to-env-var[]
8727187271
|boolean
8727287272
|
8727387273

87274-
a| [[quarkus-smallrye-graphql_quarkus-smallrye-graphql-ui-enable]] [.property-path]##link:#quarkus-smallrye-graphql_quarkus-smallrye-graphql-ui-enable[`quarkus.smallrye-graphql.ui.enable`]##
87274+
a| [[quarkus-smallrye-graphql_quarkus-smallrye-graphql-show-runtime-exception-message]] [.property-path]##link:#quarkus-smallrye-graphql_quarkus-smallrye-graphql-show-runtime-exception-message[`quarkus.smallrye-graphql.show-runtime-exception-message`]##
8727587275
ifdef::add-copy-button-to-config-props[]
87276-
config_property_copy_button:+++quarkus.smallrye-graphql.ui.enable+++[]
87276+
config_property_copy_button:+++quarkus.smallrye-graphql.show-runtime-exception-message+++[]
8727787277
endif::add-copy-button-to-config-props[]
8727887278

8727987279

8728087280
[.description]
8728187281
--
87282-
If GraphQL UI should be enabled. By default, GraphQL UI is enabled if it is included (see `always-include`).
87282+
List of Runtime Exceptions class names that should show the error message. By default, Runtime Exception messages will be hidden and a generic `Server Error` message will be returned.
8728387283

8728487284

8728587285
ifdef::add-copy-button-to-env-var[]
87286-
Environment variable: env_var_with_copy_button:+++QUARKUS_SMALLRYE_GRAPHQL_UI_ENABLE+++[]
87286+
Environment variable: env_var_with_copy_button:+++QUARKUS_SMALLRYE_GRAPHQL_SHOW_RUNTIME_EXCEPTION_MESSAGE+++[]
8728787287
endif::add-copy-button-to-env-var[]
8728887288
ifndef::add-copy-button-to-env-var[]
87289-
Environment variable: `+++QUARKUS_SMALLRYE_GRAPHQL_UI_ENABLE+++`
87289+
Environment variable: `+++QUARKUS_SMALLRYE_GRAPHQL_SHOW_RUNTIME_EXCEPTION_MESSAGE+++`
8729087290
endif::add-copy-button-to-env-var[]
8729187291
--
87292-
|boolean
87293-
|`true`
87292+
|list of string
87293+
|
8729487294

87295-
a| [[quarkus-smallrye-graphql_quarkus-smallrye-graphql-field-visibility]] [.property-path]##link:#quarkus-smallrye-graphql_quarkus-smallrye-graphql-field-visibility[`quarkus.smallrye-graphql.field-visibility`]##
87295+
a| [[quarkus-smallrye-graphql_quarkus-smallrye-graphql-hide-checked-exception-message]] [.property-path]##link:#quarkus-smallrye-graphql_quarkus-smallrye-graphql-hide-checked-exception-message[`quarkus.smallrye-graphql.hide-checked-exception-message`]##
8729687296
ifdef::add-copy-button-to-config-props[]
87297-
config_property_copy_button:+++quarkus.smallrye-graphql.field-visibility+++[]
87297+
config_property_copy_button:+++quarkus.smallrye-graphql.hide-checked-exception-message+++[]
8729887298
endif::add-copy-button-to-config-props[]
8729987299

8730087300

8730187301
[.description]
8730287302
--
87303-
Specifies the field visibility for the GraphQL schema. This configuration item allows you to define comma-separated list of patterns (GraphQLType.GraphQLField). These patterns are used to determine which fields should be excluded from the schema. Special value `no-introspection` will disable introspection fields. For more info see link:https://smallrye.io/smallrye-graphql/docs/schema/field-visibility[graphql-java documentation]
87303+
List of Checked Exceptions class names that should hide the error message. By default, Checked Exception messages will show the exception message.
8730487304

8730587305

8730687306
ifdef::add-copy-button-to-env-var[]
87307-
Environment variable: env_var_with_copy_button:+++QUARKUS_SMALLRYE_GRAPHQL_FIELD_VISIBILITY+++[]
87307+
Environment variable: env_var_with_copy_button:+++QUARKUS_SMALLRYE_GRAPHQL_HIDE_CHECKED_EXCEPTION_MESSAGE+++[]
8730887308
endif::add-copy-button-to-env-var[]
8730987309
ifndef::add-copy-button-to-env-var[]
87310-
Environment variable: `+++QUARKUS_SMALLRYE_GRAPHQL_FIELD_VISIBILITY+++`
87310+
Environment variable: `+++QUARKUS_SMALLRYE_GRAPHQL_HIDE_CHECKED_EXCEPTION_MESSAGE+++`
8731187311
endif::add-copy-button-to-env-var[]
8731287312
--
87313-
|string
87314-
|`default`
87313+
|list of string
87314+
|
8731587315

8731687316
h|[[quarkus-smallrye-graphql_section_quarkus-smallrye-graphql-ui]] [.section-name.section-level0]##link:#quarkus-smallrye-graphql_section_quarkus-smallrye-graphql-ui[SmallRye GraphQL UI configuration]##
8731787317
h|Type

_generated-doc/main/config/quarkus-smallrye-graphql.adoc

Lines changed: 57 additions & 57 deletions
Original file line numberDiff line numberDiff line change
@@ -238,48 +238,6 @@ endif::add-copy-button-to-env-var[]
238238
|list of string
239239
|
240240

241-
a|icon:lock[title=Fixed at build time] [[quarkus-smallrye-graphql_quarkus-smallrye-graphql-show-runtime-exception-message]] [.property-path]##link:#quarkus-smallrye-graphql_quarkus-smallrye-graphql-show-runtime-exception-message[`quarkus.smallrye-graphql.show-runtime-exception-message`]##
242-
ifdef::add-copy-button-to-config-props[]
243-
config_property_copy_button:+++quarkus.smallrye-graphql.show-runtime-exception-message+++[]
244-
endif::add-copy-button-to-config-props[]
245-
246-
247-
[.description]
248-
--
249-
List of Runtime Exceptions class names that should show the error message. By default, Runtime Exception messages will be hidden and a generic `Server Error` message will be returned.
250-
251-
252-
ifdef::add-copy-button-to-env-var[]
253-
Environment variable: env_var_with_copy_button:+++QUARKUS_SMALLRYE_GRAPHQL_SHOW_RUNTIME_EXCEPTION_MESSAGE+++[]
254-
endif::add-copy-button-to-env-var[]
255-
ifndef::add-copy-button-to-env-var[]
256-
Environment variable: `+++QUARKUS_SMALLRYE_GRAPHQL_SHOW_RUNTIME_EXCEPTION_MESSAGE+++`
257-
endif::add-copy-button-to-env-var[]
258-
--
259-
|list of string
260-
|
261-
262-
a|icon:lock[title=Fixed at build time] [[quarkus-smallrye-graphql_quarkus-smallrye-graphql-hide-checked-exception-message]] [.property-path]##link:#quarkus-smallrye-graphql_quarkus-smallrye-graphql-hide-checked-exception-message[`quarkus.smallrye-graphql.hide-checked-exception-message`]##
263-
ifdef::add-copy-button-to-config-props[]
264-
config_property_copy_button:+++quarkus.smallrye-graphql.hide-checked-exception-message+++[]
265-
endif::add-copy-button-to-config-props[]
266-
267-
268-
[.description]
269-
--
270-
List of Checked Exceptions class names that should hide the error message. By default, Checked Exception messages will show the exception message.
271-
272-
273-
ifdef::add-copy-button-to-env-var[]
274-
Environment variable: env_var_with_copy_button:+++QUARKUS_SMALLRYE_GRAPHQL_HIDE_CHECKED_EXCEPTION_MESSAGE+++[]
275-
endif::add-copy-button-to-env-var[]
276-
ifndef::add-copy-button-to-env-var[]
277-
Environment variable: `+++QUARKUS_SMALLRYE_GRAPHQL_HIDE_CHECKED_EXCEPTION_MESSAGE+++`
278-
endif::add-copy-button-to-env-var[]
279-
--
280-
|list of string
281-
|
282-
283241
a|icon:lock[title=Fixed at build time] [[quarkus-smallrye-graphql_quarkus-smallrye-graphql-default-error-message]] [.property-path]##link:#quarkus-smallrye-graphql_quarkus-smallrye-graphql-default-error-message[`quarkus.smallrye-graphql.default-error-message`]##
284242
ifdef::add-copy-button-to-config-props[]
285243
config_property_copy_button:+++quarkus.smallrye-graphql.default-error-message+++[]
@@ -658,7 +616,49 @@ endif::add-copy-button-to-env-var[]
658616
a|list of `uuid`
659617
|
660618

661-
a|icon:lock[title=Fixed at build time] [[quarkus-smallrye-graphql_quarkus-smallrye-graphql-exclude-null-fields-in-responses]] [.property-path]##link:#quarkus-smallrye-graphql_quarkus-smallrye-graphql-exclude-null-fields-in-responses[`quarkus.smallrye-graphql.exclude-null-fields-in-responses`]##
619+
a| [[quarkus-smallrye-graphql_quarkus-smallrye-graphql-ui-enable]] [.property-path]##link:#quarkus-smallrye-graphql_quarkus-smallrye-graphql-ui-enable[`quarkus.smallrye-graphql.ui.enable`]##
620+
ifdef::add-copy-button-to-config-props[]
621+
config_property_copy_button:+++quarkus.smallrye-graphql.ui.enable+++[]
622+
endif::add-copy-button-to-config-props[]
623+
624+
625+
[.description]
626+
--
627+
If GraphQL UI should be enabled. By default, GraphQL UI is enabled if it is included (see `always-include`).
628+
629+
630+
ifdef::add-copy-button-to-env-var[]
631+
Environment variable: env_var_with_copy_button:+++QUARKUS_SMALLRYE_GRAPHQL_UI_ENABLE+++[]
632+
endif::add-copy-button-to-env-var[]
633+
ifndef::add-copy-button-to-env-var[]
634+
Environment variable: `+++QUARKUS_SMALLRYE_GRAPHQL_UI_ENABLE+++`
635+
endif::add-copy-button-to-env-var[]
636+
--
637+
|boolean
638+
|`true`
639+
640+
a| [[quarkus-smallrye-graphql_quarkus-smallrye-graphql-field-visibility]] [.property-path]##link:#quarkus-smallrye-graphql_quarkus-smallrye-graphql-field-visibility[`quarkus.smallrye-graphql.field-visibility`]##
641+
ifdef::add-copy-button-to-config-props[]
642+
config_property_copy_button:+++quarkus.smallrye-graphql.field-visibility+++[]
643+
endif::add-copy-button-to-config-props[]
644+
645+
646+
[.description]
647+
--
648+
Specifies the field visibility for the GraphQL schema. This configuration item allows you to define comma-separated list of patterns (GraphQLType.GraphQLField). These patterns are used to determine which fields should be excluded from the schema. Special value `no-introspection` will disable introspection fields. For more info see link:https://smallrye.io/smallrye-graphql/docs/schema/field-visibility[graphql-java documentation]
649+
650+
651+
ifdef::add-copy-button-to-env-var[]
652+
Environment variable: env_var_with_copy_button:+++QUARKUS_SMALLRYE_GRAPHQL_FIELD_VISIBILITY+++[]
653+
endif::add-copy-button-to-env-var[]
654+
ifndef::add-copy-button-to-env-var[]
655+
Environment variable: `+++QUARKUS_SMALLRYE_GRAPHQL_FIELD_VISIBILITY+++`
656+
endif::add-copy-button-to-env-var[]
657+
--
658+
|string
659+
|`default`
660+
661+
a| [[quarkus-smallrye-graphql_quarkus-smallrye-graphql-exclude-null-fields-in-responses]] [.property-path]##link:#quarkus-smallrye-graphql_quarkus-smallrye-graphql-exclude-null-fields-in-responses[`quarkus.smallrye-graphql.exclude-null-fields-in-responses`]##
662662
ifdef::add-copy-button-to-config-props[]
663663
config_property_copy_button:+++quarkus.smallrye-graphql.exclude-null-fields-in-responses+++[]
664664
endif::add-copy-button-to-config-props[]
@@ -679,47 +679,47 @@ endif::add-copy-button-to-env-var[]
679679
|boolean
680680
|
681681

682-
a| [[quarkus-smallrye-graphql_quarkus-smallrye-graphql-ui-enable]] [.property-path]##link:#quarkus-smallrye-graphql_quarkus-smallrye-graphql-ui-enable[`quarkus.smallrye-graphql.ui.enable`]##
682+
a| [[quarkus-smallrye-graphql_quarkus-smallrye-graphql-show-runtime-exception-message]] [.property-path]##link:#quarkus-smallrye-graphql_quarkus-smallrye-graphql-show-runtime-exception-message[`quarkus.smallrye-graphql.show-runtime-exception-message`]##
683683
ifdef::add-copy-button-to-config-props[]
684-
config_property_copy_button:+++quarkus.smallrye-graphql.ui.enable+++[]
684+
config_property_copy_button:+++quarkus.smallrye-graphql.show-runtime-exception-message+++[]
685685
endif::add-copy-button-to-config-props[]
686686

687687

688688
[.description]
689689
--
690-
If GraphQL UI should be enabled. By default, GraphQL UI is enabled if it is included (see `always-include`).
690+
List of Runtime Exceptions class names that should show the error message. By default, Runtime Exception messages will be hidden and a generic `Server Error` message will be returned.
691691

692692

693693
ifdef::add-copy-button-to-env-var[]
694-
Environment variable: env_var_with_copy_button:+++QUARKUS_SMALLRYE_GRAPHQL_UI_ENABLE+++[]
694+
Environment variable: env_var_with_copy_button:+++QUARKUS_SMALLRYE_GRAPHQL_SHOW_RUNTIME_EXCEPTION_MESSAGE+++[]
695695
endif::add-copy-button-to-env-var[]
696696
ifndef::add-copy-button-to-env-var[]
697-
Environment variable: `+++QUARKUS_SMALLRYE_GRAPHQL_UI_ENABLE+++`
697+
Environment variable: `+++QUARKUS_SMALLRYE_GRAPHQL_SHOW_RUNTIME_EXCEPTION_MESSAGE+++`
698698
endif::add-copy-button-to-env-var[]
699699
--
700-
|boolean
701-
|`true`
700+
|list of string
701+
|
702702

703-
a| [[quarkus-smallrye-graphql_quarkus-smallrye-graphql-field-visibility]] [.property-path]##link:#quarkus-smallrye-graphql_quarkus-smallrye-graphql-field-visibility[`quarkus.smallrye-graphql.field-visibility`]##
703+
a| [[quarkus-smallrye-graphql_quarkus-smallrye-graphql-hide-checked-exception-message]] [.property-path]##link:#quarkus-smallrye-graphql_quarkus-smallrye-graphql-hide-checked-exception-message[`quarkus.smallrye-graphql.hide-checked-exception-message`]##
704704
ifdef::add-copy-button-to-config-props[]
705-
config_property_copy_button:+++quarkus.smallrye-graphql.field-visibility+++[]
705+
config_property_copy_button:+++quarkus.smallrye-graphql.hide-checked-exception-message+++[]
706706
endif::add-copy-button-to-config-props[]
707707

708708

709709
[.description]
710710
--
711-
Specifies the field visibility for the GraphQL schema. This configuration item allows you to define comma-separated list of patterns (GraphQLType.GraphQLField). These patterns are used to determine which fields should be excluded from the schema. Special value `no-introspection` will disable introspection fields. For more info see link:https://smallrye.io/smallrye-graphql/docs/schema/field-visibility[graphql-java documentation]
711+
List of Checked Exceptions class names that should hide the error message. By default, Checked Exception messages will show the exception message.
712712

713713

714714
ifdef::add-copy-button-to-env-var[]
715-
Environment variable: env_var_with_copy_button:+++QUARKUS_SMALLRYE_GRAPHQL_FIELD_VISIBILITY+++[]
715+
Environment variable: env_var_with_copy_button:+++QUARKUS_SMALLRYE_GRAPHQL_HIDE_CHECKED_EXCEPTION_MESSAGE+++[]
716716
endif::add-copy-button-to-env-var[]
717717
ifndef::add-copy-button-to-env-var[]
718-
Environment variable: `+++QUARKUS_SMALLRYE_GRAPHQL_FIELD_VISIBILITY+++`
718+
Environment variable: `+++QUARKUS_SMALLRYE_GRAPHQL_HIDE_CHECKED_EXCEPTION_MESSAGE+++`
719719
endif::add-copy-button-to-env-var[]
720720
--
721-
|string
722-
|`default`
721+
|list of string
722+
|
723723

724724
h|[[quarkus-smallrye-graphql_section_quarkus-smallrye-graphql-ui]] [.section-name.section-level0]##link:#quarkus-smallrye-graphql_section_quarkus-smallrye-graphql-ui[SmallRye GraphQL UI configuration]##
725725
h|Type

0 commit comments

Comments
 (0)