Back to Prisma1

04 Explore Features F001

docs/1.32/get-started/04-explore-features-f001.mdx

1.34.122.4 KB
Original Source

import { Row, LinkBox } from 'components/Markdown/LinkBox' import UnderstandPrismaIcon from 'icons/explore/UnderstandPrismaIcon' import DevelopServiceIcon from 'icons/explore/DevelopServiceIcon' import UseApiIcon from 'icons/explore/UseApiIcon' import RunServerIcon from 'icons/explore/RunServerIcon' import RowLink from 'components/blocks/WhiteBox/RowLink'

export const meta = { title: 'Explore Features', description: 'Congratulations for finishing the quickstart tutorial and building your first GraphQL server with Prisma! Here is where you can go next.', position: 4, wide: true, articleGroup: 'Explore Features', }

<Row> <LinkBox title="Understand Prisma" description="Learn Prisma’s most important concepts and how everything fits together." icon={<UnderstandPrismaIcon />}> <RowLink text="Prisma Intro: What, Why & How" href="/-j9ff/" /> <RowLink text="Basics: Datamodel, Prisma Client & Server" href="/-fgz4" /> <RowLink text="Prisma under the Hood" href="/-j8ff" /> </LinkBox>

<LinkBox title="Develop Prisma service" description="Prisma services map your database to the Prisma client. Learn how to build them." icon={<DevelopServiceIcon />}> <RowLink text="prisma.yml" href="/-5cy7" /> <RowLink text="Datamodel" href="/-knul" /> <RowLink text="Using the Prisma CLI" href="/-alx4" /> <RowLink text="CLI Command Reference" href="/-xcv9" /> </LinkBox> </Row>

<Row> <LinkBox title="Use Prisma client" description="Learn everything you need to know for consuming your services’ Prisma APIs." icon={<UseApiIcon />}> <RowLink text="Prisma Client" href="/prisma-client/" /> <RowLink text="Generating the client" href="/-rsc1" /> <RowLink text="Reading data" href="/-rsc2" /> <RowLink text="Writing data" href="/-rsc6" /> </LinkBox>

<LinkBox title="Run Prisma server" description="Learn how to run and maintain your Prisma servers so you can host services." icon={<RunServerIcon />}> <RowLink text="Local Prisma Setup" href="/-je3i" /> <RowLink text="Authentication & Security" href="/-kke4" /> <RowLink text="Demo Servers (Prisma Cloud)" href="/-jfr3" /> <RowLink text="Database Connector" href="/-jgfs" /> </LinkBox> </Row>