https://github.com/jexp/udc-reports
Public UDC reports
https://github.com/jexp/udc-reports
Last synced: over 1 year ago
JSON representation
Public UDC reports
- Host: GitHub
- URL: https://github.com/jexp/udc-reports
- Owner: jexp
- Created: 2012-08-22T01:15:39.000Z (almost 14 years ago)
- Default Branch: master
- Last Pushed: 2012-08-22T02:23:25.000Z (almost 14 years ago)
- Last Synced: 2025-02-10T08:30:39.656Z (over 1 year ago)
- Language: Ruby
- Size: 93.8 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.markdown
Awesome Lists containing this project
README
Offers a simple reporting front-end for the Neo4j UDC information
Uses the cypher endpoint of the UDC-graph: https://dashboard.neo4j.org/api/query.json
curl -H accept:application/json \
-d'{"query":"start n=node(0) return n"}' \
https://dashboard.neo4j.org/api/query.json
Results in json like:
{"columns":["n"],"data":[[{"self":"/node/0","data":{"lastImportDate":1345350298000,"versions":["1.3",...,"1.8.M08"]
It can also consume an array of those query/param maps and will then return an array of results.
Alternatively with a `-H neo4j.cypher.compact:true' header it will return a more compact format.
This app offers a single endpoint /reports[?date=yyyy-mm-dd]
which gives an udc-report for the month or week given (or now).