From aa8229bdb4f773c6d98f8ed9c181e3ac289e626b Mon Sep 17 00:00:00 2001 From: willbot Date: Wed, 26 Aug 2026 16:59:30 +0200 Subject: [PATCH] Point repo links at prisma/orm The prisma/prisma repository was renamed prisma/orm; issue and blob links survive via the rename redirect, but the canonical spelling moves. Signed-off-by: willbot Signed-off-by: Will Madden --- databases/postgresql-supabase/prisma/seed.ts | 2 +- orm/astro/README.md | 2 +- orm/cloudflare-workers/README.md | 2 +- orm/express/prisma/seed.ts | 2 +- orm/fastify-graphql-sdl-first/prisma/seed.ts | 2 +- orm/fastify-graphql/prisma/seed.ts | 2 +- orm/fastify/prisma/seed.ts | 2 +- orm/graphql-auth/prisma/seed.ts | 2 +- orm/graphql-gqloom/prisma/seed.ts | 2 +- orm/graphql-gqloom/src/resolvers/post.ts | 2 +- orm/graphql-nexus/prisma/seed.ts | 2 +- orm/graphql-sdl-first/prisma/seed.ts | 2 +- orm/graphql-subscriptions/prisma/seed.ts | 2 +- orm/graphql/prisma/seed.ts | 2 +- orm/graphql/src/schema/post.ts | 2 +- orm/grpc/prisma/seed.ts | 2 +- orm/hapi-graphql-sdl-first/prisma/seed.ts | 2 +- orm/hapi-graphql/prisma/seed.ts | 2 +- orm/hapi/prisma/seed.ts | 2 +- orm/hono/README.md | 2 +- orm/hono/prisma/seed.ts | 2 +- orm/koa/prisma/seed.ts | 2 +- orm/nest-graphql-sdl-first/prisma/seed.ts | 2 +- orm/nest-graphql/prisma/seed.ts | 2 +- orm/nest/prisma/seed.ts | 2 +- orm/nextjs-graphql/prisma/seed.ts | 2 +- orm/nuxt-prisma-module/prisma/seed.ts | 2 +- orm/nuxt/prisma/seed.ts | 2 +- orm/react-router-7/README.md | 2 +- orm/solid-start/README.md | 2 +- orm/sveltekit/README.md | 2 +- 31 files changed, 31 insertions(+), 31 deletions(-) diff --git a/databases/postgresql-supabase/prisma/seed.ts b/databases/postgresql-supabase/prisma/seed.ts index 80f67ecece29..ca4212909b9c 100644 --- a/databases/postgresql-supabase/prisma/seed.ts +++ b/databases/postgresql-supabase/prisma/seed.ts @@ -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, }, { diff --git a/orm/astro/README.md b/orm/astro/README.md index 355b09771514..b25800b789f8 100644 --- a/orm/astro/README.md +++ b/orm/astro/README.md @@ -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/) diff --git a/orm/cloudflare-workers/README.md b/orm/cloudflare-workers/README.md index 1913566d6a8d..d6a435a8a7d4 100644 --- a/orm/cloudflare-workers/README.md +++ b/orm/cloudflare-workers/README.md @@ -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/) diff --git a/orm/express/prisma/seed.ts b/orm/express/prisma/seed.ts index 26987cd9e169..64e4da0217db 100644 --- a/orm/express/prisma/seed.ts +++ b/orm/express/prisma/seed.ts @@ -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, }, { diff --git a/orm/fastify-graphql-sdl-first/prisma/seed.ts b/orm/fastify-graphql-sdl-first/prisma/seed.ts index e5d795122d77..8b8cee4ca4a2 100644 --- a/orm/fastify-graphql-sdl-first/prisma/seed.ts +++ b/orm/fastify-graphql-sdl-first/prisma/seed.ts @@ -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, }, diff --git a/orm/fastify-graphql/prisma/seed.ts b/orm/fastify-graphql/prisma/seed.ts index e5d795122d77..8b8cee4ca4a2 100644 --- a/orm/fastify-graphql/prisma/seed.ts +++ b/orm/fastify-graphql/prisma/seed.ts @@ -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, }, diff --git a/orm/fastify/prisma/seed.ts b/orm/fastify/prisma/seed.ts index 26987cd9e169..64e4da0217db 100644 --- a/orm/fastify/prisma/seed.ts +++ b/orm/fastify/prisma/seed.ts @@ -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, }, { diff --git a/orm/graphql-auth/prisma/seed.ts b/orm/graphql-auth/prisma/seed.ts index 8cad1d80d66e..7605aee38e0e 100644 --- a/orm/graphql-auth/prisma/seed.ts +++ b/orm/graphql-auth/prisma/seed.ts @@ -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, }, diff --git a/orm/graphql-gqloom/prisma/seed.ts b/orm/graphql-gqloom/prisma/seed.ts index 5346336fe07a..ba176cab521d 100644 --- a/orm/graphql-gqloom/prisma/seed.ts +++ b/orm/graphql-gqloom/prisma/seed.ts @@ -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, }, diff --git a/orm/graphql-gqloom/src/resolvers/post.ts b/orm/graphql-gqloom/src/resolvers/post.ts index 0b32f75471bb..b2c64f6176e8 100644 --- a/orm/graphql-gqloom/src/resolvers/post.ts +++ b/orm/graphql-gqloom/src/resolvers/post.ts @@ -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 }, diff --git a/orm/graphql-nexus/prisma/seed.ts b/orm/graphql-nexus/prisma/seed.ts index e5d795122d77..8b8cee4ca4a2 100644 --- a/orm/graphql-nexus/prisma/seed.ts +++ b/orm/graphql-nexus/prisma/seed.ts @@ -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, }, diff --git a/orm/graphql-sdl-first/prisma/seed.ts b/orm/graphql-sdl-first/prisma/seed.ts index e5d795122d77..8b8cee4ca4a2 100644 --- a/orm/graphql-sdl-first/prisma/seed.ts +++ b/orm/graphql-sdl-first/prisma/seed.ts @@ -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, }, diff --git a/orm/graphql-subscriptions/prisma/seed.ts b/orm/graphql-subscriptions/prisma/seed.ts index 391a17312492..dde7b273d3f8 100644 --- a/orm/graphql-subscriptions/prisma/seed.ts +++ b/orm/graphql-subscriptions/prisma/seed.ts @@ -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, }, { diff --git a/orm/graphql/prisma/seed.ts b/orm/graphql/prisma/seed.ts index e5d795122d77..8b8cee4ca4a2 100644 --- a/orm/graphql/prisma/seed.ts +++ b/orm/graphql/prisma/seed.ts @@ -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, }, diff --git a/orm/graphql/src/schema/post.ts b/orm/graphql/src/schema/post.ts index 883d41a65eb6..28b7e5c745ee 100644 --- a/orm/graphql/src/schema/post.ts +++ b/orm/graphql/src/schema/post.ts @@ -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 }, diff --git a/orm/grpc/prisma/seed.ts b/orm/grpc/prisma/seed.ts index 26987cd9e169..64e4da0217db 100644 --- a/orm/grpc/prisma/seed.ts +++ b/orm/grpc/prisma/seed.ts @@ -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, }, { diff --git a/orm/hapi-graphql-sdl-first/prisma/seed.ts b/orm/hapi-graphql-sdl-first/prisma/seed.ts index e5d795122d77..8b8cee4ca4a2 100644 --- a/orm/hapi-graphql-sdl-first/prisma/seed.ts +++ b/orm/hapi-graphql-sdl-first/prisma/seed.ts @@ -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, }, diff --git a/orm/hapi-graphql/prisma/seed.ts b/orm/hapi-graphql/prisma/seed.ts index e5d795122d77..8b8cee4ca4a2 100644 --- a/orm/hapi-graphql/prisma/seed.ts +++ b/orm/hapi-graphql/prisma/seed.ts @@ -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, }, diff --git a/orm/hapi/prisma/seed.ts b/orm/hapi/prisma/seed.ts index 26987cd9e169..64e4da0217db 100644 --- a/orm/hapi/prisma/seed.ts +++ b/orm/hapi/prisma/seed.ts @@ -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, }, { diff --git a/orm/hono/README.md b/orm/hono/README.md index 3ed94548ffd6..327c7cbda19e 100644 --- a/orm/hono/README.md +++ b/orm/hono/README.md @@ -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/) diff --git a/orm/hono/prisma/seed.ts b/orm/hono/prisma/seed.ts index 884455d0e2b7..3b771ef7a253 100644 --- a/orm/hono/prisma/seed.ts +++ b/orm/hono/prisma/seed.ts @@ -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, }, { diff --git a/orm/koa/prisma/seed.ts b/orm/koa/prisma/seed.ts index 26987cd9e169..64e4da0217db 100644 --- a/orm/koa/prisma/seed.ts +++ b/orm/koa/prisma/seed.ts @@ -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, }, { diff --git a/orm/nest-graphql-sdl-first/prisma/seed.ts b/orm/nest-graphql-sdl-first/prisma/seed.ts index b54f392cdd4f..294264f769b2 100644 --- a/orm/nest-graphql-sdl-first/prisma/seed.ts +++ b/orm/nest-graphql-sdl-first/prisma/seed.ts @@ -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, }, diff --git a/orm/nest-graphql/prisma/seed.ts b/orm/nest-graphql/prisma/seed.ts index b54f392cdd4f..294264f769b2 100644 --- a/orm/nest-graphql/prisma/seed.ts +++ b/orm/nest-graphql/prisma/seed.ts @@ -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, }, diff --git a/orm/nest/prisma/seed.ts b/orm/nest/prisma/seed.ts index 7db4699235b9..819b8fd59865 100644 --- a/orm/nest/prisma/seed.ts +++ b/orm/nest/prisma/seed.ts @@ -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, }, { diff --git a/orm/nextjs-graphql/prisma/seed.ts b/orm/nextjs-graphql/prisma/seed.ts index e847c871fb29..fe9fae55dd03 100644 --- a/orm/nextjs-graphql/prisma/seed.ts +++ b/orm/nextjs-graphql/prisma/seed.ts @@ -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, }, { diff --git a/orm/nuxt-prisma-module/prisma/seed.ts b/orm/nuxt-prisma-module/prisma/seed.ts index 743d0485d9fb..704d8a381f0c 100644 --- a/orm/nuxt-prisma-module/prisma/seed.ts +++ b/orm/nuxt-prisma-module/prisma/seed.ts @@ -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, }, { diff --git a/orm/nuxt/prisma/seed.ts b/orm/nuxt/prisma/seed.ts index 1f8e938bdc69..17227963320a 100644 --- a/orm/nuxt/prisma/seed.ts +++ b/orm/nuxt/prisma/seed.ts @@ -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, }, diff --git a/orm/react-router-7/README.md b/orm/react-router-7/README.md index 51d8bec5e44c..1a207cbf3fbe 100644 --- a/orm/react-router-7/README.md +++ b/orm/react-router-7/README.md @@ -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/) diff --git a/orm/solid-start/README.md b/orm/solid-start/README.md index 130fe410db72..fb6ad7c8b40b 100644 --- a/orm/solid-start/README.md +++ b/orm/solid-start/README.md @@ -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/) diff --git a/orm/sveltekit/README.md b/orm/sveltekit/README.md index 5c563d1afcc8..61f1ad649687 100644 --- a/orm/sveltekit/README.md +++ b/orm/sveltekit/README.md @@ -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/)