curl-XPOST-d"SELECT city, lat, lng FROM uk_cities LIMIT 2"localhost:8080/api/<你的空间名>/sqlcurl-XPOST-d"query { uk_cities(limit: 2) {city, lat, lng} }"localhost:8080/api/<你的空间名>/graphqlcurl"localhost:8080/api/<你的空间名>/tables/uk_cities?columns=city,lat,lng&limit=2"
response 样例:
[ {"city":"Elgin, Scotland, the UK","lat":57.653484,"lng":-3.335724 }, {"city":"Stoke-on-Trent, Staffordshire, the UK","lat":53.002666,"lng":-2.179404 }]