Skip to content

Commit

Permalink
fix: TG findEdges fromDID
Browse files Browse the repository at this point in the history
  • Loading branch information
simonas-notcat committed Mar 2, 2020
1 parent 52e8f1b commit dc63238
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/daf-trust-graph/src/queries.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ export const addEdge = gql`
`

export const findEdges = gql`
query findEdges($toDID: [String], $since: Int) {
findEdges(toDID: $toDID, since: $since) {
query findEdges($toDID: [String], $fromDID: [String], $since: Int) {
findEdges(toDID: $toDID, fromDID: $fromDID, since: $since) {
hash
time
type
Expand Down

0 comments on commit dc63238

Please sign in to comment.