node_properties_query = '\nCALL apoc.meta.data(
)\nYIELD label, other, elementType, type, property\nWHERE NOT type = "RELATIONSHIP" AND elementType = "node" \n AND NOT label IN $EXCLUDED_LABELS\nWITH label AS nodeLabels, collect({property:property, type:type}
) AS properties\nRETURN {labels: nodeLabels, properties: properties} AS output\n\n'