Aaron Wng
Aaron Wng
I got a bettern version ``` import React, { useState } from "react"; import Typist from 'react-typist'; export default function InfTypist({words}) { const [index, setIndex] = useState(0); let word =...
generated/nexus.graphql ``` type group { comment: String id: Int! name: String user(cursor: userWhereUniqueInput, skip: Int, take: Int): [user!]! } type user { comment: String crisp: String email: String group: Int...
I finally found out that's because the unique identifier `id` starting from 0. If I run Query with id: 1, ``` query{ group(where:{id:1}){ user{ username } } } ``` it...
https://github.com/graphql-nexus/nexus-schema-plugin-prisma/blob/81a53b7e48ce42b3a25de86b73f38d2b087f6620/src/constraints.ts#L47 I thought we may need to change this statement to ``` if(!data.hasownproperty(indentifier)){ ``` So that we don't even miss situation when `data[identifier] equals false`
希望能有帳號密碼登陸功能