You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
a|The auth provider `<provider>` is not defined in the configuration.
2796
+
Verify that the spelling is correct or define `<provider>` in the configuration.
2797
+
|Severity
2798
+
m|INFORMATION
2799
+
|Category
2800
+
m|SECURITY
2801
+
|===
2802
+
2803
+
.Create a user with an auth provider that is not defined in the configuration
2804
+
====
2805
+
Command::
2806
+
+
2807
+
[source, cypher]
2808
+
----
2809
+
CREATE USER foo SET AUTH 'unknownProvider' { SET ID 'idString' }
2810
+
----
2811
+
2812
+
Description of the returned code::
2813
+
The auth provider `unknownProvider` is not defined in the configuration.
2814
+
Verify that the spelling is correct or define `unknownProvider` in the configuration.
2815
+
2816
+
Suggestions for improvement::
2817
+
Make sure that the given provider is correct, or replace it if not.
2818
+
If it is correct, make sure to add it as a known auth provider in one or both of `dbms.security.authentication_providers` and `dbms.security.authorization_providers`.
2819
+
====
2820
+
2821
+
.Alter a user to add an auth provider that is not defined in the configuration
2822
+
====
2823
+
Command::
2824
+
+
2825
+
[source, cypher]
2826
+
----
2827
+
ALTER USER foo SET AUTH 'unknownProvider' { SET ID 'idString' }
2828
+
----
2829
+
2830
+
Description of the returned code::
2831
+
The auth provider `unknownProvider` is not defined in the configuration.
2832
+
Verify that the spelling is correct or define `unknownProvider` in the configuration.
2833
+
2834
+
Suggestions for improvement::
2835
+
Make sure that the given provider is correct, or replace it if not.
2836
+
If it is correct, make sure to add it as a known auth provider in one or both of `dbms.security.authentication_providers` and `dbms.security.authorization_providers`.
MATCH ()-[r*]->()<-[r*]-() RETURN count(*) AS count
3794
4105
----
3795
4106
Description of the returned code::
3796
-
A variable-length relationship variable is bound more than once, which leads to no results because relationships must not occur more than once in each result. (Relationship `r` was repeated)
3797
-
4107
+
A variable-length relationship variable is bound more than once, which leads to no results because relationships must not occur more than once in each result. (Relationship r was repeated)
3798
4108
======
4109
+
3799
4110
[.include-with-GQLSTATUS-code]
3800
4111
======
3801
4112
Query::
@@ -3813,4 +4124,3 @@ warn: repeated relationship reference.
3813
4124
`r` is repeated in `()-[r*]->()<-[r*]-()`, which leads to no results.
0 commit comments