Tag: #reactjs
-
How to display graphql values in React app
0 I have a Strapi app that outputs graphql, it a list of fonts that I simple want to display on a page The page looks like this ‘use client’ import {getDataFromTree} from ‘@apollo/client/react/ssr’ import withApollo from ‘../lib/withApollo’ import { useThemeContext } from ‘./appState’ import { FontEntityResponse } from ‘@/generated’ const Home = () =>…
-
Variable “$id” got invalid value “1”; Int cannot represent non-integer value: “1”
0 I’ve been learning the mern stack from this book I’m now on Nested Routes under React Router chapter The web application is supposed to render this on the page. When clicking the Select link under the Action column, the description of an issue is displayed on the bottom part of the page. But in…
-
.Net Lead – Amzur Technologies, Inc. – Remote
Amzur Technologies, Inc. Remote Depends on Experience Contract: W2, Corp-To-Corp, 6 Month(s) Skills ReactJS GraphQL C# REST API .Net Core Job Description Summary/ ResponsibilitiesThe Software Engineering Manager Chapter Lead guides technology adoption across product teams, builds, and maximizes the capabilities and skills within the chapter, manages and supports chapter members (employees and contingent labor). The…
-
can i use page items in cursor base pagination?
-1 can i use page items in cursor base pagination? for example it’s possible to directly address a specific page. For instance, if the requirement is to jump directly to page five, it’s possible to do so since the pages themselves are not explicitly numbered. reactjs graphql apollo-client Share Improve this question Follow asked 39…
-
Best practice for keeping graphql data up-to-date with apollo
0 What is the best practice for keeping subscriptions in sync with your query schemas? My previous exposure to graphQL subscriptions was from Hasura, which would implement subscriptions for every table such that when a subscribing is made, the current set would be sent over the wire (followed by any updates). const data = useSubscription(…)…
-
object Object at handleError graphql
0 I am creating a react app using amplify and graphql my graphql schema is type Note @model @auth(rules: [ { allow: public } ] ){ id: ID! name: String! description: String image: String noteBook: NoteBook! } type NoteBook @model @auth(rules: [ { allow: public } ] ){ id: ID! name: String! notes: [Note!] }…