ArangoDB 的graph查询
一个graph包含 vertices 和 edges。edges被存储在edges document当中。vertices可以是document collection 中的document也可以是edge document中的document。所以说edges也可以被当做vertices来使用。 1、数据准备 使用arangoimp导入飞机场和航班csv数据信息。 导入飞机场信息 arangoimp --file <em>path to airports.csv</em> on your machine --collection airports --create-collection true --type csv 这里我们创建了一个document collection;为每一行创建一个document.标题被作为属性名称。其中标题中包含一个_key的值,系统将自动识别该列作为_key. 现在打开浏览器(http://localhost:8529)便可以看到刚刚导入的信息了。 可以点击浏览器中的queries进行查询: 查询所有的机场 FOR airport in ariports RETURN airport 仅查询加利福尼亚机场信息 FOR airport IN airports FILTER airport.state==‘CA’ RETURN