简介 - 什么是REST ++?

TigerGraph TM 系统使用着名的REpresentational State Transfer(REST)架构来管理与TigerGraph核心组件,图形处理引擎(GPE)和图形存储引擎(GSE)的通信。REST ++(或RESTPP)是TigerGraph定制的REST服务器。(请参见下面的图1)当上层组件(如Platform Web UI或GSQL)希望访问图形引擎时,它会向REST ++服务器发送请求。用户还可以通过使用系统附带的标准REST API之一,或通过创作然后使用自定义终端API,直接与REST ++服务器通信。本文档描述了内置端点的API,该API提供了对图形数据进行基本查询和操作的方法。

图1 :TigerGraph系统框图

像大多数RESTful系统一样,REST ++采用HTTP协议(特别是没有请求流水线的HTTP / 1.1)。因此,REST API具有请求方法和URL,响应状态代码和数据响应。本指南介绍了用于查询,更新和从图数据中删除的请求方法和URL。它还描述了数据响应的格式。

TigerGraph REST API使用三种HTTP请求方法:

  • GET 用于请求数据。

  • POST 用于发送数据。

  • DELETE 用于删除数据。

如果用户提交不支持的HTTP方法,API将返回一条错误消息:“未找到端点”。

REST Request Format

curl -X method "http://server_ip:9000/path_to_endpoint?request_parameters"
Example:
Example: Get all User vertices

curl -X GET "http://172.16.0.222:9000/graph/vertices/User"

 

To list only the first three vertices, we can set limit = 3:

 

Example: Get up to 3 User vertices
curl -X GET "http://localhost:9000/graph/socialNet/vertices/User?limit=3"

 

Input Data for POST

 

Input data for POST requests should be in JSON format. There are two ways to supply the data: inline or in a separate file.

 

Inline Data

 

The data should be formatted as a single string without linebreaks. Use the curl - option, followed by the JSON string.

 

Syntax for a POST request with Inline Data Payload
curl -X POST -d 'json_string' "http://server_ip:9000/path_to_endpoint?request_parameters"

 

The following example uses the POST /graph endpoint to insert one User type vertex whose id value is "id6" into the graph called "socialNet".

 

Example using inline input data
curl -X POST -d '{"vertices":{"User":{"id6":{"id":{"value":"id6"}}}}}' "http://172.16.0.222:9000/graph"

 

Data File

 

Often it will be more convenient for the input data to be in a separate file, especially if it is large.

 

Use the curl option --data-binary @path_to_file as in the example below:

 

Syntax for a POST request with Payload Data File
curl -X POST --data-binary @json_file "http://server_ip:9000/path_to_endpoint?request_parameters"

 

If we now store the data string in a file (say, my_input.json), then the example above becomes the following:

 

Example using inline input data
curl -X POST --data-binary @my_input.json "http://172.16.0.222:9000/graph"

 

REST++ Output 

To make the output more human readable, use the jq command or Python json library built into most Linux installations. Specifically,

curl -X method "http://server_ip:9000/path_to_endpoint?request_parameters" | jq .
curl -X method "http://server_ip:9000/path_to_endpoint?request_parameters" | python -m json.tool

Example:

curl -X GET "http://172.16.0.222:9000/graph/vertices/User?limit=3"

without postprocess formatting returns the following:

{"version":{"api":"v2","schema":0},"error":false,"message":"","results":[{"v_id":"id2","v_type":"User","attributes":{}},{"v_id":"id14","v_type":"User","attributes":{}},{"v_id":"id58","v_type":"User","attributes":{}}]}

 

On the other hand,

curl -X GET "http://172.16.0.222:9000/graph/vertices/User?limit=3" | jq .

returns this much more readable output:

{

  "version": {

    "api": "v2",

    "schema": 0

  },

  "error": false,

  "message": "",

  "results": [

    {

      "v_id": "id2",

      "v_type": "User",

      "attributes": {}

    },

    {

      "v_id": "id14",

      "v_type": "User",

      "attributes": {}

    },

    {

      "v_id": "id58",

      "v_type": "User",

      "attributes": {}

    }

  ]

}

GET /echo and POST /echo

These endpoints are simple diagnostic utilities which respond with the following message.

GET echo/ Request and Response
curl -X GET "http://localhost:9000/echo" { "error": false, "message": "Hello GSQL" }

POST /echo has the same response as GET /echo.

GET /endpoints

This endpoint returns a list of the installed endpoints and their parameters. There are three types of endpoints, described in the table below.

Type

Description

builtin

preinstalled in the TigerGraph system

dynamic

generated when compiling GSQL queries

static

user-installed endpoints

 

 

GET /graph/graph_name/vertices

Syntax for GET /graph/vertices
curl -X GET "http://server_ip:9000/graph/graph_name/vertices/{vertex_type}[/{vertex_id}/]

This endpoint returns all vertices having the type vertex_type in the graph called graph_name . Optionally, the user can instead chose a particular vertex by including its primary_id at the vertex_id field For example:

 graph_name: 图分组名称

 vertex_type: 点的类型名称。目前demo:User Page Product DescWord NameUser VidUser Video AttributeTag Person SocialUser

 vertex_id: 点的ID类型

curl -X GET "http://172.16.0.222:9000/graph/vertices/User/id1" | jq .

{ "version": { "api": "v2", "schema": 0 }, "error": false, "message": "", "results": [ { "v_id": "id1", "v_type": "User", "attributes": {} } ] }

 count_only:  BOOL(1/0/true/false)

curl -X GET 'http://172.16.0.222:9000/graph/vertices/SocialUser?count_only=1' | jq .

{

  "version": {

    "api": "v2",

    "schema": 0

  },

  "error": false,

  "message": "",

  "results": [

    {

      "v_type": "SocialUser",

      "count": 10

    }

  ]

}

 

 filter: 过滤attributes的属性 

curl -X GET 'http://172.16.0.222:9000/graph/vertices/SocialUser?filter=name="peter"' | jq .

{

  "version": {

    "api": "v2",

    "schema": 0

  },

  "error": false,

  "message": "",

  "results": [

    {

      "v_id": "6",

      "v_type": "SocialUser",

      "attributes": {

        "name": "peter",

        "isActive": true,

        "registration_timestamp": 146000000

      }

    }

  ]

}

  limit:限制放回个数

curl -X GET 'http://172.16.0.222:9000/graph/vertices/SocialUser?limit=2' | jq .

{

  "version": {

    "api": "v2",

    "schema": 0

  },

  "error": false,

  "message": "",

  "results": [

    {

      "v_id": "6",

      "v_type": "SocialUser",

      "attributes": {

        "name": "peter",

        "isActive": true,

        "registration_timestamp": 146000000

      }

    },

    {

      "v_id": "5",

      "v_type": "SocialUser",

      "attributes": {

        "name": "steven",

        "isActive": false,

        "registration_timestamp": 145000000

      }

    }

  ]

}

   select: 返回筛选的attributes的属性

curl -X GET 'http://172.16.0.222:9000/graph/vertices/SocialUser?select=name' | jq .

{

 

  "version": {

 

    "api": "v2",

 

    "schema": 0

 

  },

 

  "error": false,

 

  "message": "",

 

  "results": [

 

    {

 

      "v_id": "6",

 

      "v_type": "SocialUser",

 

      "attributes": {

 

        "name": "peter"

 

      }

 

    },

 

    {

 

      "v_id": "5",

 

      "v_type": "SocialUser",

 

      "attributes": {

 

        "name": "steven"

 

      }

 

    },

 

    {

 

      "v_id": "8",

 

      "v_type": "SocialUser",

 

      "attributes": {

 

        "name": "joseph"

 

      }

 

    },

 

    {

 

      "v_id": "7",

 

      "v_type": "SocialUser",

 

      "attributes": {

 

        "name": "james"

 

      }

 

    },

 

    {

 

      "v_id": "2",

 

      "v_type": "SocialUser",

 

      "attributes": {

 

        "name": "matthew"

 

      }

 

    },

 

    {

 

      "v_id": "4",

 

      "v_type": "SocialUser",

 

      "attributes": {

 

        "name": "paul"

 

      }

 

    },

 

    {

 

      "v_id": "9",

 

      "v_type": "SocialUser",

 

      "attributes": {

 

        "name": "thomas"

 

      }

 

    },

 

    {

 

      "v_id": "1",

 

      "v_type": "SocialUser",

 

      "attributes": {

 

        "name": "john"

 

      }

 

    },

 

    {

 

      "v_id": "0",

 

      "v_type": "SocialUser",

 

      "attributes": {

 

        "name": "luke"

 

      }

 

    },

 

    {

 

      "v_id": "3",

 

      "v_type": "SocialUser",

 

      "attributes": {

 

        "name": "mark"

 

      }

 

    }

 

  ]

 

}

    sort: 通过筛选的attributes的属性进行排序

curl -X GET 'http://172.16.0.222:9000/graph/vertices/SocialUser?sort=name' | jq .

{

 

  "version": {

 

    "api": "v2",

 

    "schema": 0

 

  },

 

  "error": false,

 

  "message": "",

 

  "results": [

 

    {

 

      "v_id": "7",

 

      "v_type": "SocialUser",

 

      "attributes": {

 

        "name": "james",

 

        "isActive": true,

 

        "registration_timestamp": 147000000

 

      }

 

    },

 

    {

 

      "v_id": "1",

 

      "v_type": "SocialUser",

 

      "attributes": {

 

        "name": "john",

 

        "isActive": true,

 

        "registration_timestamp": 1410000000

 

      }

 

    },

 

    {

 

      "v_id": "8",

 

      "v_type": "SocialUser",

 

      "attributes": {

 

        "name": "joseph",

 

        "isActive": true,

 

        "registration_timestamp": 148000000

 

      }

 

    },

 

    {

 

      "v_id": "0",

 

      "v_type": "SocialUser",

 

      "attributes": {

 

        "name": "luke",

 

        "isActive": true,

 

        "registration_timestamp": 1400000000

 

      }

 

    },

 

    {

 

      "v_id": "3",

 

      "v_type": "SocialUser",

 

      "attributes": {

 

        "name": "mark",

 

        "isActive": true,

 

        "registration_timestamp": 143000000

 

      }

 

    },

 

    {

 

      "v_id": "2",

 

      "v_type": "SocialUser",

 

      "attributes": {

 

        "name": "matthew",

 

        "isActive": false,

 

        "registration_timestamp": 1420000000

 

      }

 

    },

 

    {

 

      "v_id": "4",

 

      "v_type": "SocialUser",

 

      "attributes": {

 

        "name": "paul",

 

        "isActive": true,

 

        "registration_timestamp": 144000000

 

      }

 

    },

 

    {

 

      "v_id": "6",

 

      "v_type": "SocialUser",

 

      "attributes": {

 

        "name": "peter",

 

        "isActive": true,

 

        "registration_timestamp": 146000000

 

      }

 

    },

 

    {

 

      "v_id": "5",

 

      "v_type": "SocialUser",

 

      "attributes": {

 

        "name": "steven",

 

        "isActive": false,

 

        "registration_timestamp": 145000000

 

      }

 

    },

 

    {

 

      "v_id": "9",

 

      "v_type": "SocialUser",

 

      "attributes": {

 

        "name": "thomas",

 

        "isActive": true,

 

        "registration_timestamp": 149000000

 

      }

 

    }

 

  ]

 

}

 

GET /graph/graph_name/edges

Syntax for GET /graph/edges
curl -X GET "http://localhost:9000/graph/graph_name/edges/{source_vertex_type}/{source_vertex_id}/[{edge_type}/[{target_vertex_type}/[{target_vertex_id}]]]

This endpoint returns all edges which connect to a given vertex ID in the graph called graph_name . A source vertex ID must be given. The user may optionally specify the edge type, the target vertex type, and the target vertex ID. The URL format is as follows:

  • edge_type - type name of the edges. Use "_" to permit any edge type. Omitting the edge_type field from the URL also permits any edge type. However, skipping edge_type also means that target_vertex_type and target_vertex_id must be skipped.
  • target_vertex_type type name of the target vertices.
  • target_vertex_id ID of the target vertex.

   source_vertex_type: 源点,如VidUser

   source_vertex_id: 源点ID,如 0

   edge_type: 边的类型,如User_Video

  target_vertex_type: 目标点,如 User

  target_vertex_id: 目标点ID ,如Video

     sort: 通过筛选的attributes的属性进行排序

curl -X GET 'http://172.16.0.222:9000/graph/edges/VidUser/0/User_Video/Video' | jq .

{

 

  "version": {

 

    "api": "v2",

 

    "schema": 0

 

  },

 

  "error": false,

 

  "message": "",

 

  "results": [

 

    {

 

      "e_type": "User_Video",

 

      "directed": false,

 

      "from_id": "0",

 

      "from_type": "VidUser",

 

      "to_id": "2",

 

      "to_type": "Video",

 

      "attributes": {

 

        "rating": 5.2,

 

        "date_time": 0

 

      }

 

    },

 

    {

 

      "e_type": "User_Video",

 

      "directed": false,

 

      "from_id": "0",

 

      "from_type": "VidUser",

 

      "to_id": "0",

 

      "to_type": "Video",

 

      "attributes": {

 

        "rating": 6.8,

 

        "date_time": 0

 

      }

 

    },

 

    {

 

      "e_type": "User_Video",

 

      "directed": false,

 

      "from_id": "0",

 

      "from_type": "VidUser",

 

      "to_id": "3",

 

      "to_type": "Video",

 

      "attributes": {

 

        "rating": 10,

 

        "date_time": 0

 

      }

 

    }

 

  ]

 

}

 count_only、limit、select、sort、timeout 跟/graph/vertices一样

 

/graph/graph_name/edges has two optional parameters "count_only" and "not_wildcard":

  • count_only: If it is true, the results contains only the number of edges selected. The default value is false.
  • not_wildcard: This determines how the edge type name "_" is interpreted. If false (which is the default), "_" means all edge types are included. If not_wildcard is true, "_" is interpreted literally to select only edges with edge type name equal to underscore.

DELETE /graph/vertices

curl -X DELETE "http://server_ip:9000/graph/graph_name/vertices/{vertex_type}[/{vertex_id}/]

 graph_name: 图分组名称

 vertex_type: 点的类型名称。目前demo:User Page Product DescWord NameUser VidUser Video AttributeTag Person SocialUser

 vertex_id: 点的ID类型

This endpoint deletes the given vertex(vertices) in the graph called graph_name . The URL is exactly the same as GET /graph/graph_name/vertices. This endpoint has an additional parameter "permanent", whose default value is false. If "permanent" is true, the deleted vertex ids can never be inserted back, unless the graph is dropped or the graph store is cleared.

Example:

curl -X DELETE "http://172.16.0.222:9000/graph/vertices/User/id64" | jq .

 

{

 

  "version": {

 

    "api": "v2",

 

    "schema": 0

 

  },

 

  "error": false,

 

  "message": "",

 

  "results": {

 

    "v_type": "User",

 

    "deleted_vertices": 1

 

  }

 

}

DELETE /graph/edges

curl -X DELETE "http://server_ip:9000/graph/graph_name/edges/{source_vertex_type}/{source_vertex_id}/[{edge_type}/[{target_vertex_type}/[{target_vertex_id}]]]

  source_vertex_type: 源点,如VidUser

   source_vertex_id: 源点ID,如 0

   edge_type: 边的类型,如User_Video

  target_vertex_type: 目标点,如 User

  target_vertex_id: 目标点ID ,如Video

   sort: 通过筛选的attributes的属性进行排序

Example:

curl -X DELETE "http://172.16.0.222:9000/graph/edges/VidUser/0/User_Video/Video" | jq .

 

{

 

  "version": {

 

    "api": "v2",

 

    "schema": 0

 

  },

 

  "error": false,

 

  "message": "",

 

  "results": [

 

    {

 

      "e_type": "User_Video",

 

      "deleted_edges": 3

 

    }

 

  ]

 

}

 

This endpoint deletes the given edge(s). The URL is exactly the same as GET /graph/edges.

Advanced Parameters for /graph/vertices and /graph/edges

The above four endpoints, GET /graph/graph_name/vertices, GET /graph/graph_name/edges, DELETE /graph/graph_name/vertices, and DELETE /graph/graph_name/edges, have optional URL parameters for further operations:

  1. Select: Specify which attributes to be returned (GET only).
  2. Filter: Apply a filter on the vertices or edges, based on their attribute values.
  3. Limit: Limit the total number of vertices or edges.
  4. Sort: Sort the data. (For DELETE, sort should be used with limit together.)
  5. Timeout: Timeout in seconds. If set to 0, use system wide endpoint timeout setting.

The parameter 'Limit' can reduce the search space and leads to quick response of queries. However if Limit and Sort are both provided, the query still needs to traverse all potential vertices/edges and it might lead to slow query response on large graph.

Select

By default the GET /graph/vertices and /graph/edges endpoints return all the attributes of the selected vertices or edges. The select parameter can be used to specify either the desired or the undesired attributes. The format is select=attribute_list, where attribute_list is a list of comma-separated attributes. Listing an attribute name means that this attribute should be included, while an attribute name preceded by a minus sign means that this attribute should be excluded. An underscore means all attributes.

It is illegal to specify both desired and undesired attributes in the same request.

Example Query: Return the date_time attribute of all product vertices on socialNet.

curl -X GET "http://172.16.0.222:9000/graph/vertices/Product?select=date_time"

Filter

The filter parameter is a set of conditions analogous to the WHERE clause in industry-standard SQL language. The format is filter=filter_list, where filter_list is a list of comma-separated filters, and each filter is the concatenation of an attribute, an operator, and a value (with no white spaces separating the parts). The following six comparison operators are supported:

  1. equal to

  2. != not equal to

  3. greater than

  4. >= greater than or equal to

  5. less than

  6. <= less than or equal to

Here is an example request: It returns all User vertices with age greater than or equal to 30.

curl -X GET "http://172.16.0.222:9000/graph/vertices/User?filter=age>=30" 

 

 

 

 

 

{"version":{"api":"v2","schema":0},"error":false,"message":"","results":[{"v_id":"id2","v_type":"User","attributes":{}},{"v_id":"id14","v_type":"User","attributes":{}},{"v_id":"id58","v_type":"User","attributes":{}}]}

TigerGraph REST++API的更多相关文章

  1. 干货来袭-整套完整安全的API接口解决方案

    在各种手机APP泛滥的现在,背后都有同样泛滥的API接口在支撑,其中鱼龙混杂,直接裸奔的WEB API大量存在,安全性令人堪优 在以前WEB API概念没有很普及的时候,都采用自已定义的接口和结构,对 ...

  2. 12306官方火车票Api接口

    2017,现在已进入春运期间,真的是一票难求,深有体会.各种购票抢票软件应运而生,也有购买加速包提高抢票几率,可以理解为变相的黄牛.对于技术人员,虽然写一个抢票软件还是比较难的,但是还是简单看看123 ...

  3. 几个有趣的WEB设备API(二)

    浏览器和设备之间还有很多有趣的接口, 1.屏幕朝向接口 浏览器有两种方法来监听屏幕朝向,看是横屏还是竖屏. (1)使用css媒体查询的方法 /* 竖屏 */ @media screen and (or ...

  4. html5 canvas常用api总结(三)--图像变换API

    canvas的图像变换api,可以帮助我们更加方便的绘画出一些酷炫的效果,也可以用来制作动画.接下来将总结一下canvas的变换方法,文末有一个例子来更加深刻的了解和利用这几个api. 1.画布旋转a ...

  5. JavaScript 对数据处理的5个API

    JavaScript对数据处理包括向上取整.向下取整.四舍五入.固定精度和固定长度5种方式,分别对应ceil,floor,round,toFixed,toPrecision等5个API,本文将对这5个 ...

  6. ES5对Array增强的9个API

    为了更方便的对Array进行操作,ES5规范在Array的原型上新增了9个方法,分别是forEach.filter.map.reduce.reduceRight.some.every.indexOf ...

  7. javascript的api设计原则

    前言 本篇博文来自一次公司内部的前端分享,从多个方面讨论了在设计接口时遵循的原则,总共包含了七个大块.系卤煮自己总结的一些经验和教训.本篇博文同时也参考了其他一些文章,相关地址会在后面贴出来.很难做到 ...

  8. 一百元的智能家居——Asp.Net Mvc Api+讯飞语音+Android+Arduino

    大半夜的,先说些废话提提神 如今智能家居已经不再停留在概念阶段,高大上的科技公司都已经推出了自己的部分或全套的智能家居解决方案,不过就目前的现状而言,大多还停留在展厅阶段,还没有广泛的推广起来,有人说 ...

  9. 在一个空ASP.NET Web项目上创建一个ASP.NET Web API 2.0应用

    由于ASP.NET Web API具有与ASP.NET MVC类似的编程方式,再加上目前市面上专门介绍ASP.NET Web API 的书籍少之又少(我们看到的相关内容往往是某本介绍ASP.NET M ...

随机推荐

  1. bzoj4105: [Thu Summer Camp 2015]平方运算

    填坑 我不知道怎么算的,但是所有环的LCM数不会超过60 然后用线段树维护这个东西,每个节点记录子树内的循环节 没到循环节的暴力枚举 复杂度是nlogn再乘以循环节长度 #include<cst ...

  2. sublime text3 3176激活

    更改hosts sudo vim /etc/hosts 127.0.0.1 www.sublimetext.com 127.0.0.1 license.sublimehq.com 输入激活码 ---- ...

  3. HDU - 1875 畅通工程再续(最小生成树)

    d.c个小岛,通过建立桥,使其全部可达.求所有的桥的最小长度和. s.最小生成树,数据改成double就行了 c.Prim算法:cost[a][b]和cost[b][a]都得赋值. /* Prim算法 ...

  4. hive 中 Order by, Sort by ,Dristribute by,Cluster By 的作用和用法

    order by order by 会对输入做全局排序,因此只有一个reducer(多个reducer无法保证全局有序) 只有一个reducer,会导致当输入规模较大时,需要较长的计算时间. set ...

  5. 棋盘问题(dp)

    棋盘问题 传送门 题目描述 在一个给定形状的棋盘(形状可能是不规则的)上面摆放棋子,棋子没有区别.要求摆放时任意的两个棋子不能放在棋盘中的同一行或者同一列,请编程求解对于给定形状和大小的棋盘,摆放k个 ...

  6. 获取服务器基本信息.sh

    #获取linux服务器基本信息脚本 #!/bin/bash # #Name:system_info #Ver:1.0 #Author:lykyl # # #程序说明: #获取服务器基本信息脚本 # e ...

  7. python: 使用matplotlib的pyplot绘制图表

    工作中需要观察数据的变化趋势,用python写了一段小程序来用显示简单图表,分享出来方便有同样需求的人,matplotlib是个很不错的库. #!encode=utf8 from matplotlib ...

  8. 2、HTML的head内标签

    一.Meta(metadata information) 提供有关页面的元信息,例:页面编码.刷新.跳转.针对搜索引擎和更新频度的描述和关键词 1.页面编码(告诉浏览器是什么编码) <meta ...

  9. bzoj 3172: [Tjoi2013]单词【AC自动机】

    一眼AC自动机,就是先把串建一个自动机,标记每个串在自动机上的位置,然后加上间隔符连成一个串在自动机上跑,每跑到一个点就说明这个串以及它到root的所有点表示的串都要被更新一次 先在点上打上标记,最后 ...

  10. TensorFlow图像预处理完整样例

    参考书 <TensorFlow:实战Google深度学习框架>(第2版) 以下TensorFlow程序完成了从图像片段截取,到图像大小调整再到图像翻转及色彩调整的整个图像预处理过程. #! ...