Skip to content

Commit

Permalink
feat: change the owner filter to check by address instead of id (#326)
Browse files Browse the repository at this point in the history
  • Loading branch information
juanmahidalgo authored Oct 23, 2024
1 parent d592dd7 commit bd67e70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/validations/access/subgraph/scenes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export function createSceneValidateFn({
query GetAuthorizations($owner: String!, $operator: String!, $timestamp: Int!, $tokenAddress: String!) {
authorizations(
where: {
owner: $owner,
owner_: {address: $owner},
operator: $operator,
createdAt_lte: $timestamp,
tokenAddress: $tokenAddress
Expand Down

0 comments on commit bd67e70

Please sign in to comment.