We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
maybe create a new query file for this, something like "useCoherentVotes":
import useSWR from "swr"; import { gql } from "graphql-request"; import { User } from "src/graphql/graphql"; export type { User }; const coherentVotesQuery = gql` query User($id: ID) { penalties { degreeOfCoherency } } `; export const useCoherentVotes = (id: string): { data: typeof result; error: any; isValidating: boolean } => { const { data, error, isValidating } = useSWR({ query: coherentVotesQuery, variables: { id: id }, }); const result = data ? (data as User) : undefined; return { data: result, error, isValidating }; };
The text was updated successfully, but these errors were encountered:
Sorry, something went wrong.
No branches or pull requests
Uh oh!
There was an error while loading. Please reload this page.
maybe create a new query file for this, something like "useCoherentVotes":
The text was updated successfully, but these errors were encountered: