Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
karatakis committed Oct 10, 2024
1 parent 0adbbb2 commit 28f36a6
Showing 1 changed file with 17 additions and 19 deletions.
36 changes: 17 additions & 19 deletions tailcall-fixtures/fixtures/configs/interface-config.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -3,51 +3,49 @@ schema @server {
}

interface T0 {
id: Int!
id: Int!
}

interface T1 {
id: Int!
id: Int!
}

interface T2 implements T1 {
id: Int!
id: Int!
}

interface T3 implements T1 {
id: Int!
id: Int!
}

interface T4 implements T2 & T3 & T1 {
id: Int!
id: Int!
}



type A implements T1 {
id: Int!
id: Int!
}
type B implements T2 {
id: Int!
id: Int!
}
type C implements T3 {
id: Int!
id: Int!
}
type D implements T4 {
id: Int!
id: Int!
}
type E implements T1 & T2 & T3 & T0 {
id: Int!
id: Int!
}
type F implements T0 {
id: Int!
id: Int!
}

type Query {
a: A @expr(body: "A")
b: B @expr(body: "B")
c: C @expr(body: "C")
d: D @expr(body: "D")
e: E @expr(body: "E")
f: F @expr(body: "F")
a: A @expr(body: "A")
b: B @expr(body: "B")
c: C @expr(body: "C")
d: D @expr(body: "D")
e: E @expr(body: "E")
f: F @expr(body: "F")
}

0 comments on commit 28f36a6

Please sign in to comment.