Skip to content

Commit 224841f

Browse files
authored
Fix compatiblity app response value (#608)
1 parent 31142ed commit 224841f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

example/federation/compatibility/server.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,8 @@ func populateResolver(sdl string) *resolver {
232232
Email: graphql.ID("[email protected]"),
233233
Name: strptr("Jane Smith"),
234234
TotalProductsCreated: intptr(1337),
235-
AverageProductsCreatedPerYear: intptr(0),
235+
AverageProductsCreatedPerYear: intptr(134),
236+
YearsOfEmployment: 10,
236237
}
237238
users := map[graphql.ID]User{
238239
defaultUser.Email: *defaultUser,

0 commit comments

Comments
 (0)