1.2.1 • Published 6 years ago

@cayleygraph/cayley v1.2.1

Weekly downloads
198
License
Apache-2.0
Repository
github
Last release
6 years ago

JavaScript Client for Cayley

Documentation

Installation

npm install @cayleygraph/cayley

Usage

Log 10 nodes from the graph

import * as cayley from "@cayleygraph/cayley";

const client = new cayley.Client();
const response = client.query(g.V().getLimit(10));
response
  .then(res => res.json())
  .then(nodes => {
    for (const node of nodes) {
      console.log(node);
    }
  });
1.2.0

6 years ago

1.1.5

6 years ago

1.2.1

6 years ago

1.1.4

6 years ago

1.1.3

6 years ago

1.1.2

6 years ago

1.1.0

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago