diff --git a/examples/35_custom-scalar/custom-scalar.ts b/examples/35_custom-scalar/custom-scalar.ts index d548eb2ef..d1ff49324 100644 --- a/examples/35_custom-scalar/custom-scalar.ts +++ b/examples/35_custom-scalar/custom-scalar.ts @@ -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)