Skip to content

graph/<node>/search/fields

Back to Index

Contains a list of fields on the graph node to include in the search index. Expected format is an array of objects, each object containing key field and optional isKeyword (default=false). If isKeyword is set to true, the field’s content will only match on exact or partial wildcard searches.

A non-keyword field can also make special characters such as dash or underscore optional. Additionally, double subsequent letters are removed, so “johansson” and “johanson” are identical.

Any queryable field can be indexed, including dynamic fields: dynamic->'field'.

For more information about search, refer to Graph Phrase Search.

Example Value

[{
"field": "orderNumber",
"isKeyword": true
}]
Back to Index