We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Creating an issue to track a few problems I've found with the app:
xata:init
package.json
--schema=schema.template.json
--schema=schema-template.json
getServerSession
req
NextApiRequest
import { XataClient } from '~/lib/xata.codegen'
~/shared/xata.codegen
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Creating an issue to track a few problems I've found with the app:
xata:init
inpackage.json
refers to a--schema=schema.template.json
when it should be--schema=schema-template.json
. Hyphen not period.getServerSession
, which requires thereq
param to be aNextApiRequest
, but thereq
is a standard Request.import { XataClient } from '~/lib/xata.codegen'
should be updated to~/shared/xata.codegen
The text was updated successfully, but these errors were encountered: