Skip to content

Commit

Permalink
update example
Browse files Browse the repository at this point in the history
  • Loading branch information
lixuanxian committed Mar 29, 2021
1 parent 2c059d2 commit d394fdb
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,14 @@ graphXR.injectionApiCommand('MATCH (n)-[r]-(m) RETURN * LIMIT 100', iframeElem)
})
```

If you do not want node append to graphXR, please set ignoreAppend as true
```
graphXR.injectionApiCommand('MATCH (n)-[r]-(m) RETURN * LIMIT 100', iframeElem,{ignoreAppend:true})
.then((resData) => {
console.warn("Receive query data:", resData.content)
})
```

### 2. Injection codes

Expand Down

0 comments on commit d394fdb

Please sign in to comment.