hub schema modify indexType

Changes the index type of a model.

Use the hub schema modify indexType command to change the index type of a Context Graph model property.

Usage

hub schema modify indexType --m model --p property --i index --w waitForComplete
RequiredArgumentDescription
Yes--m modelSpecifies the name of the model whose entity type you want to modify.
Yes--p propertySpecifies the property you want to index.
Yes--i indexSpecifies the property index.
NONE
Removes the property index.
EXACT
Sets the property index to exact.
CASE_INSENSITIVE
Sets the property index to case insensitive.
No--w waitForCompleteSpecifies whether to wait for jobs to complete in a synchronous mode, where waitForComplete is one of the following:
true
Waits for jobs to complete.
false
Does not wait for jobs to complete. This is the default setting.

Example

This example changes the index type for a property called HireDate in a model called Staff to exact.

hub schema modify indexType --m Staff --p HireDate --i EXACT