Tag: next
-
Crypto: Are You Ready For The Next Bull Run?
Actions Panel Get ready for the next crypto bull run with our online event, where we'll explore everything you need to know to stay ahead in crypto! Date and time Saturday, October 21 · 10 – 11am PDT Location Online Agenda 1:00 PM – 2:00 PM Preparing For The Next Bull Run Mike Pair Getting…
-
How to query a date/time field using pothos with prisma and postgresql
0 I’ve got my pothos set up using Prisma and postgresql. I’m trying to expose the createdAt and updatedAt fields from prisma in my builder: Prisma schema: model Course { id Int @id @unique @default(autoincrement()) createdAt DateTime @default(now()) updatedAt DateTime @updatedAt // removed fields for brevity. } My builder: builder.prismaObject(‘Course’, { fields: (t) => ({…
-
Are graphql codegen types correct
0 I’m trying to create a simple next app with typescript using Strapi as a headless CMS. I just want to use Strapi and graphql with typescript to show something in the next app. In Strapi I simply have a Color Content type with two colors, red and blue I have graphql set up in…
-
Using map on data from graphql
0 I have a nextjs app using typescript and a Strapi backend with graphql I’m trying to simple get the graphql from strapi and display it in the react app. I’m trying to display a list of font names. In react I have this query, this works in the playground import { gql } from…