@spknetwork/graph-client

A client for accessing the SPK network

Usage no npm install needed!

<script type="module">
  import spknetworkGraphClient from 'https://cdn.skypack.dev/@spknetwork/graph-client';
</script>

README

SPK Graph Client

The javascript/typescript client for interacting with documents on SPK network.

Usage

Initialize the client

const spkClient = new SpkClient(SPK_INDEXER_HOST, ceramicClient), 

Create a new document

const docContent = { key: "value" }
const parentId = "optionalParentStreamId"
const created = await spkClient.createDocument(docContent, parentId)
console.log(`Created new document with streamId ${created.streamId} and parent id ${parentId}`)

Fetch a document

const fetched = await spkClient.fetchDocument(streamId)

Update a document

const newContent = { key: "value2" }
await spkClient.updateDocument(streamId, newContent)

Get documents belong to a user

const userDocs = await spkClient.getDocumentsForUser("[Owning User DID]")

Get child documents of a parent

const childDocs = await spkClient.getDocumentChildren("[Parent document stream ID]")

SPK indexer host list

  1. Public SPK indexer node https://us-01.infra.3speak.tv