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
It is important the `graphId` here matches the ID of the main graph you
127
+
wish to connect to as this controls which Accumulo table is connected to.
128
+
117
129
Many of these properties in the example above should be self explanatory, a full breakdown of
118
130
of the available properties is as follows:
119
131
@@ -123,11 +135,11 @@ of the available properties is as follows:
123
135
|`gaffer.graphId`| The graph ID of the Tinkerpop graph |
124
136
|`gaffer.storeproperties`| The path to the store properties file |
125
137
|`gaffer.schemas`| The path to the directory containing the graph schema files |
126
-
|`gaffer.userId`| The user ID for the Tinkerpop graph |
127
-
|`gaffer.dataAuths`| The data auths for the user to specify what operations can be performed |
128
-
| `gaffer.operation.options` | Additional operation options that will be passed to the Tinkerpop graph variables in the form `key:value`
138
+
|`gaffer.userId`| The default user ID for the Tinkerpop graph (see the [authentication section](#user-authentication))|
139
+
|`gaffer.dataAuths`| The default data auths for the user to specify what operations can be performed |
140
+
|`gaffer.operation.options`|Default `Operation` options in the form `key:value` (this can be overridden per query see [here](../../user-guide/query/gremlin/gremlin.md#custom-features)) |
129
141
130
-
####Configuring the Gremlin Server
142
+
### Configuring the Gremlin Server
131
143
132
144
The underlying Gremlin server can also be configured if required. The `gaffer-gremlin`
133
145
image comes with an existing YAML configuration based on the example from the
Copy file name to clipboardExpand all lines: docs/user-guide/query/gremlin/gremlin.md
+1
Original file line number
Diff line number
Diff line change
@@ -270,3 +270,4 @@ for Gaffer specific options:
270
270
| --- | --- | --- |
271
271
|`operationOptions`|`g.with("operationOptions", "gaffer.federatedstore.operation.graphIds:graphA").V()`| Allows passing options to the underlying Gaffer Operations, this is the same as the `options` field on a standard JSON query. |
272
272
|`getAllElementsLimit`|`g.with("getAllElementsLimit", 100).V()`| Limits the amount of elements returned if performing an unseeded query e.g. a `GetAllElements` operation. |
273
+
|`hasStepFilterStage`|`g.with("hasStepFilterStage", "PRE_AGGREGATION").V()`| Controls which phase the filtering from a Gremlin `has()` stage is applied to the results. |
0 commit comments