Skip to content

Commit

Permalink
chore(website): simplify example
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonkuhrt committed Oct 23, 2024
1 parent 1eb0129 commit 245a10a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/35_custom-scalar/custom-scalar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@ const pokemons = await graffle.query.pokemons({
birthday: true,
})

show(`pokemons[0].birthday instanceof Date = ${String(pokemons?.[0]?.birthday instanceof Date)}`)
show(pokemons?.[0]?.birthday instanceof Date)
show(pokemons)

0 comments on commit 245a10a

Please sign in to comment.