Currently we are using the old method db.index.fulltext.createNodeIndex to create a full-text search index, but since this is deprecated in 4.4 how to rewrite with CREATE FULLTEXT INDEX?
CALL db.propertyKeys() YIELD propertyKey CALL db.labels() YIELD label WITH
collect(DISTINCT propertyKey) AS properties,
collect(DISTINCT label) AS labels
CALL db.index.fulltext.createNodeIndex("fullSearchIndex", labels, properties) RETURN labels, properties
A possible solution with APOC:
Remark:
runSchemaneeds to be used for schema manipulation operations.