Skip to content

Commit

Permalink
Updated subgraph query to get the plugin settings by address
Browse files Browse the repository at this point in the history
  • Loading branch information
nigeon committed Nov 10, 2023
1 parent 1c47010 commit 9318df1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/js-client/src/internal/graphql-queries/settings.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { gql } from 'graphql-request';

export const QueryPluginSettings = gql`
query PluginSettings($address: ID!, $block: Block_height) {
plugin(id: $address, block: $block) {
query PluginSettings($address: String!, $block: Block_height) {
plugins(address: $address, block: $block) {
id
onlyExecutionMultisigProposalCreation
minTallyApprovals
Expand Down

0 comments on commit 9318df1

Please sign in to comment.