fix: graphql query deprecation issue (#3506)

This commit is contained in:
Anwarul Islam
2023-11-08 15:21:39 +06:00
committed by GitHub
parent 663134839f
commit be3e5ba7e7
3 changed files with 87 additions and 85 deletions

View File

@@ -58,7 +58,7 @@
v-for="(field, index) in filteredQueryFields"
:key="`field-${index}`"
:gql-field="field"
:jump-type-callback="handleJumpToType"
@jump-to-type="handleJumpToType"
class="p-4"
/>
</HoppSmartTab>
@@ -72,7 +72,7 @@
v-for="(field, index) in filteredMutationFields"
:key="`field-${index}`"
:gql-field="field"
:jump-type-callback="handleJumpToType"
@jump-to-type="handleJumpToType"
class="p-4"
/>
</HoppSmartTab>
@@ -86,7 +86,7 @@
v-for="(field, index) in filteredSubscriptionFields"
:key="`field-${index}`"
:gql-field="field"
:jump-type-callback="handleJumpToType"
@jump-to-type="handleJumpToType"
class="p-4"
/>
</HoppSmartTab>
@@ -103,7 +103,7 @@
:gql-types="graphqlTypes"
:is-highlighted="isGqlTypeHighlighted(type)"
:highlighted-fields="getGqlTypeHighlightedFields(type)"
:jump-type-callback="handleJumpToType"
@jump-to-type="handleJumpToType"
/>
</HoppSmartTab>
</HoppSmartTabs>