httplib equivalent of curl command
To use ArangoDB from C++ I’m leveraging httplib to interact with the database’s http interface. Example queries like those found in the docs are straight-forward using curl: curl –user root:test123 –data @- -X POST –dump – http://localhost:8529/_db/Getting-Started/_api/cursor <<EOF { "query" : "FOR u IN Airports LIMIT 2 RETURN u", "count" : true, "batchSize" : 2… Read More httplib equivalent of curl command