如何查询Neo4j的属性的数据类型 比如是 string,int还是 double
WITH [true, 42, 'foo', 1.2] AS data UNWIND data as value RETURN apoc.meta.type(value)