Tag: vuejs3
-
How can I get schema from graphql?
0 I have a field There are values inside SignificanceLevelType : How can I get these values in frontend if there aren’t a special query for this? When I sent: query { protectedNaturalAreas { edges { node { significanceLevel } } } } I got significanceLevels in protectedNaturalAreas, but I want to get existing areas…
-
Vue Apollo Composable useQuery Ignores Reactive Filter Variable Change Even Though It Triggers a Refetch
0 I am using Vue Apollo Composable with useQuery to perform a GraphQL query. My pagination works as expected; however, I am facing an issue with my filters.verified variable. Although I see the variable toggling in the client-side (I’m logging it), the network request still shows the initial value as true. Problem: When I click…