From 81d74f095a1c975f213975f38d585bea561a66a8 Mon Sep 17 00:00:00 2001 From: Rob Dominguez Date: Thu, 1 Jun 2023 00:44:57 -0500 Subject: [PATCH] docs: change quotes on getting started backend guide PR-URL: https://github.com/hasura/graphql-engine-mono/pull/9378 GitOrigin-RevId: c602758e97b855c759028d9945a9288ce2e42a85 --- docs/docs/getting-started/use-case/gql-backend.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/docs/getting-started/use-case/gql-backend.mdx b/docs/docs/getting-started/use-case/gql-backend.mdx index a2d49e33d0c..9932368d75a 100644 --- a/docs/docs/getting-started/use-case/gql-backend.mdx +++ b/docs/docs/getting-started/use-case/gql-backend.mdx @@ -120,8 +120,8 @@ CREATE TABLE todos ( ALTER TABLE "users" ADD COLUMN country VARCHAR(255); INSERT INTO "users" (name, email, password, country) VALUES - ('John', 'john@example.com', 'password123', "US"), - ('Jane', 'jane@example.com', 'password456', "GB"); + ('John', 'john@example.com', 'password123', 'US'), + ('Jane', 'jane@example.com', 'password456', 'GB'); INSERT INTO todos (title, description, user_id) VALUES ('Buy groceries', 'Milk, eggs, bread', 1),