Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion databases/postgresql-supabase/prisma/seed.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const userData = [
create: [
{
title: 'Ask a question about Prisma on GitHub',
content: 'https://www.github.com/prisma/prisma/discussions',
content: 'https://www.github.com/prisma/orm/discussions',
published: true,
},
{
Expand Down
2 changes: 1 addition & 1 deletion orm/astro/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,4 +73,4 @@ If you want to try this example with another database rather than Prisma Postgre

- Check out the [Prisma docs](https://www.prisma.io/docs)
- Share your feedback on the [Prisma Discord](https://pris.ly/discord/)
- Create issues and ask questions on [GitHub](https://github.com/prisma/prisma/)
- Create issues and ask questions on [GitHub](https://github.com/prisma/orm/)
2 changes: 1 addition & 1 deletion orm/cloudflare-workers/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,4 +99,4 @@ curl -X DELETE http://localhost:8788/users/1

- Check out the [Prisma docs](https://www.prisma.io/docs)
- Share your feedback on the [Prisma Discord](https://pris.ly/discord/)
- Create issues and ask questions on [GitHub](https://github.com/prisma/prisma/)
- Create issues and ask questions on [GitHub](https://github.com/prisma/orm/)
2 changes: 1 addition & 1 deletion orm/express/prisma/seed.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const userData: Prisma.UserCreateInput[] = [
create: [
{
title: 'Ask a question about Prisma on GitHub',
content: 'https://www.github.com/prisma/prisma/discussions',
content: 'https://www.github.com/prisma/orm/discussions',
published: true,
},
{
Expand Down
2 changes: 1 addition & 1 deletion orm/fastify-graphql-sdl-first/prisma/seed.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const userData: Prisma.UserCreateInput[] = [
create: [
{
title: 'Ask a question about Prisma on GitHub',
content: 'https://www.github.com/prisma/prisma/discussions',
content: 'https://www.github.com/prisma/orm/discussions',
published: true,
viewCount: 128,
},
Expand Down
2 changes: 1 addition & 1 deletion orm/fastify-graphql/prisma/seed.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const userData: Prisma.UserCreateInput[] = [
create: [
{
title: 'Ask a question about Prisma on GitHub',
content: 'https://www.github.com/prisma/prisma/discussions',
content: 'https://www.github.com/prisma/orm/discussions',
published: true,
viewCount: 128,
},
Expand Down
2 changes: 1 addition & 1 deletion orm/fastify/prisma/seed.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const userData: Prisma.UserCreateInput[] = [
create: [
{
title: 'Ask a question about Prisma on GitHub',
content: 'https://www.github.com/prisma/prisma/discussions',
content: 'https://www.github.com/prisma/orm/discussions',
published: true,
},
{
Expand Down
2 changes: 1 addition & 1 deletion orm/graphql-auth/prisma/seed.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const userData: Prisma.UserCreateInput[] = [
create: [
{
title: 'Ask a question about Prisma on GitHub',
content: 'https://www.github.com/prisma/prisma/discussions',
content: 'https://www.github.com/prisma/orm/discussions',
published: true,
viewCount: 128,
},
Expand Down
2 changes: 1 addition & 1 deletion orm/graphql-gqloom/prisma/seed.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const userData: Prisma.UserCreateInput[] = [
create: [
{
title: 'Ask a question about Prisma on GitHub',
content: 'https://www.github.com/prisma/prisma/discussions',
content: 'https://www.github.com/prisma/orm/discussions',
published: true,
viewCount: 128,
},
Expand Down
2 changes: 1 addition & 1 deletion orm/graphql-gqloom/src/resolvers/post.ts
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ export const postResolver = resolver.of(Post, {
id: z.number().int(),
})
.resolve(async ({ id }) => {
// TODO: Simplify once https://github.com/prisma/prisma/issues/16715 is fixed
// TODO: Simplify once https://github.com/prisma/orm/issues/16715 is fixed
const postPublished = await prisma.post.findUnique({
where: { id },
select: { published: true },
Expand Down
2 changes: 1 addition & 1 deletion orm/graphql-nexus/prisma/seed.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const userData: Prisma.UserCreateInput[] = [
create: [
{
title: 'Ask a question about Prisma on GitHub',
content: 'https://www.github.com/prisma/prisma/discussions',
content: 'https://www.github.com/prisma/orm/discussions',
published: true,
viewCount: 128,
},
Expand Down
2 changes: 1 addition & 1 deletion orm/graphql-sdl-first/prisma/seed.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const userData: Prisma.UserCreateInput[] = [
create: [
{
title: 'Ask a question about Prisma on GitHub',
content: 'https://www.github.com/prisma/prisma/discussions',
content: 'https://www.github.com/prisma/orm/discussions',
published: true,
viewCount: 128,
},
Expand Down
2 changes: 1 addition & 1 deletion orm/graphql-subscriptions/prisma/seed.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const userData: Prisma.UserCreateInput[] = [
create: [
{
title: 'Ask a question about Prisma on GitHub',
content: 'https://www.github.com/prisma/prisma/discussions',
content: 'https://www.github.com/prisma/orm/discussions',
published: true,
},
{
Expand Down
2 changes: 1 addition & 1 deletion orm/graphql/prisma/seed.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const userData: Prisma.UserCreateInput[] = [
create: [
{
title: 'Ask a question about Prisma on GitHub',
content: 'https://www.github.com/prisma/prisma/discussions',
content: 'https://www.github.com/prisma/orm/discussions',
published: true,
viewCount: 128,
},
Expand Down
2 changes: 1 addition & 1 deletion orm/graphql/src/schema/post.ts
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ builder.mutationFields((t) => ({
id: t.arg.int({ required: true }),
},
resolve: async (query, parent, args) => {
// Toggling become simpler once this bug is resolved: https://github.com/prisma/prisma/issues/16715
// Toggling become simpler once this bug is resolved: https://github.com/prisma/orm/issues/16715
const postPublished = await prisma.post.findUnique({
where: { id: args.id },
select: { published: true },
Expand Down
2 changes: 1 addition & 1 deletion orm/grpc/prisma/seed.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const userData: Prisma.UserCreateInput[] = [
create: [
{
title: 'Ask a question about Prisma on GitHub',
content: 'https://www.github.com/prisma/prisma/discussions',
content: 'https://www.github.com/prisma/orm/discussions',
published: true,
},
{
Expand Down
2 changes: 1 addition & 1 deletion orm/hapi-graphql-sdl-first/prisma/seed.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const userData: Prisma.UserCreateInput[] = [
create: [
{
title: 'Ask a question about Prisma on GitHub',
content: 'https://www.github.com/prisma/prisma/discussions',
content: 'https://www.github.com/prisma/orm/discussions',
published: true,
viewCount: 128,
},
Expand Down
2 changes: 1 addition & 1 deletion orm/hapi-graphql/prisma/seed.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const userData: Prisma.UserCreateInput[] = [
create: [
{
title: 'Ask a question about Prisma on GitHub',
content: 'https://www.github.com/prisma/prisma/discussions',
content: 'https://www.github.com/prisma/orm/discussions',
published: true,
viewCount: 128,
},
Expand Down
2 changes: 1 addition & 1 deletion orm/hapi/prisma/seed.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const userData: Prisma.UserCreateInput[] = [
create: [
{
title: 'Ask a question about Prisma on GitHub',
content: 'https://www.github.com/prisma/prisma/discussions',
content: 'https://www.github.com/prisma/orm/discussions',
published: true,
},
{
Expand Down
2 changes: 1 addition & 1 deletion orm/hono/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,4 +71,4 @@ If you want to try this example with another database, refer to the [Databases](

- Check out the [Prisma docs](https://www.prisma.io/docs)
- Share feedback on the [Prisma Discord](https://pris.ly/discord/)
- Create issues or ask questions on [GitHub](https://github.com/prisma/prisma/)
- Create issues or ask questions on [GitHub](https://github.com/prisma/orm/)
2 changes: 1 addition & 1 deletion orm/hono/prisma/seed.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const userData: Prisma.UserCreateInput[] = [
create: [
{
title: 'Ask a question about Prisma on GitHub',
content: 'https://www.github.com/prisma/prisma/discussions',
content: 'https://www.github.com/prisma/orm/discussions',
published: true,
},
{
Expand Down
2 changes: 1 addition & 1 deletion orm/koa/prisma/seed.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const userData: Prisma.UserCreateInput[] = [
create: [
{
title: 'Ask a question about Prisma on GitHub',
content: 'https://www.github.com/prisma/prisma/discussions',
content: 'https://www.github.com/prisma/orm/discussions',
published: true,
},
{
Expand Down
2 changes: 1 addition & 1 deletion orm/nest-graphql-sdl-first/prisma/seed.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const userData: Prisma.UserCreateInput[] = [
create: [
{
title: 'Ask a question about Prisma on GitHub',
content: 'https://www.github.com/prisma/prisma/discussions',
content: 'https://www.github.com/prisma/orm/discussions',
published: true,
viewCount: 128,
},
Expand Down
2 changes: 1 addition & 1 deletion orm/nest-graphql/prisma/seed.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const userData: Prisma.UserCreateInput[] = [
create: [
{
title: 'Ask a question about Prisma on GitHub',
content: 'https://www.github.com/prisma/prisma/discussions',
content: 'https://www.github.com/prisma/orm/discussions',
published: true,
viewCount: 128,
},
Expand Down
2 changes: 1 addition & 1 deletion orm/nest/prisma/seed.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const userData: Prisma.UserCreateInput[] = [
create: [
{
title: 'Ask a question about Prisma on GitHub',
content: 'https://www.github.com/prisma/prisma/discussions',
content: 'https://www.github.com/prisma/orm/discussions',
published: true,
},
{
Expand Down
2 changes: 1 addition & 1 deletion orm/nextjs-graphql/prisma/seed.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const userData: Prisma.UserCreateInput[] = [
create: [
{
title: "Ask a question about Prisma on GitHub",
content: "https://www.github.com/prisma/prisma/discussions",
content: "https://www.github.com/prisma/orm/discussions",
published: true,
},
{
Expand Down
2 changes: 1 addition & 1 deletion orm/nuxt-prisma-module/prisma/seed.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const userData = [
create: [
{
title: 'Ask a question about Prisma on GitHub',
content: 'https://www.github.com/prisma/prisma/discussions',
content: 'https://www.github.com/prisma/orm/discussions',
published: true,
},
{
Expand Down
2 changes: 1 addition & 1 deletion orm/nuxt/prisma/seed.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const userData = [
create: [
{
title: 'Ask a question about Prisma on GitHub',
content: 'https://www.github.com/prisma/prisma/discussions',
content: 'https://www.github.com/prisma/orm/discussions',
published: true,
viewCount: 128,
},
Expand Down
2 changes: 1 addition & 1 deletion orm/react-router-7/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,4 +138,4 @@ datasource db {

- Check out the [Prisma docs](https://www.prisma.io/docs)
- Share your feedback on the [Prisma Discord](https://pris.ly/discord/)
- Create issues and ask questions on [GitHub](https://github.com/prisma/prisma/)
- Create issues and ask questions on [GitHub](https://github.com/prisma/orm/)
2 changes: 1 addition & 1 deletion orm/solid-start/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,4 +70,4 @@ If you want to try this example with another database rather than Prisma Postgre

- Check out the [Prisma docs](https://www.prisma.io/docs)
- Share your feedback on the [Prisma Discord](https://pris.ly/discord/)
- Create issues and ask questions on [GitHub](https://github.com/prisma/prisma/)
- Create issues and ask questions on [GitHub](https://github.com/prisma/orm/)
2 changes: 1 addition & 1 deletion orm/sveltekit/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,4 +75,4 @@ If you want to try this example with another database rather than Prisma Postgre

- Check out the [Prisma docs](https://www.prisma.io/docs)
- Share your feedback on the [Prisma Discord](https://pris.ly/discord/)
- Create issues and ask questions on [GitHub](https://github.com/prisma/prisma/)
- Create issues and ask questions on [GitHub](https://github.com/prisma/orm/)
Loading