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.
1 parent f692850 commit bc390c4Copy full SHA for bc390c4
components/match/MatchSelectServer.vue
@@ -65,6 +65,7 @@ import { typedGql } from "~/generated/zeus/typedDocumentNode";
65
import { generateMutation } from "~/graphql/graphqlGen";
66
import { toast } from "@/components/ui/toast";
67
import { useApplicationSettingsStore } from "~/stores/ApplicationSettings";
68
+import { e_server_types_enum } from "~/generated/zeus";
69
70
export default {
71
props: {
@@ -78,7 +79,13 @@ export default {
78
79
servers: {
80
query: typedGql("subscription")({
81
servers: [
- {},
82
+ {
83
+ where: {
84
+ type : {
85
+ _eq: e_server_types_enum.Ranked
86
+ }
87
88
+ },
89
{
90
id: true,
91
host: true,
0 commit comments