From 6ce59cdb5b867e8ec2778b25570978328ce29da3 Mon Sep 17 00:00:00 2001 From: Anna Wiley <128400776+awiley33@users.noreply.github.com> Date: Mon, 23 Oct 2023 09:51:58 -0500 Subject: [PATCH] docs: Add link addresses and another query to README --- README.md | 38 ++++++++++++++++++++++++++++++++++++-- 1 file changed, 36 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index bada19d..938bce6 100644 --- a/README.md +++ b/README.md @@ -5,8 +5,8 @@ # GearUp (Back-End Repo) -Link to [GearUP Website]() -Link to [Front-End Repo]() +Link to [GearUP Website](https://gear-up-ui-ux.vercel.app/) +Link to [Front-End Repo](https://github.com/gearup-2305/gearUp-UI-UX) ### Table of Contents 1. [Setup](#setup) @@ -84,6 +84,40 @@ query artists { } } ``` +One Artist: +``` +query artist ($id: ID!) { + artist (id: $id) { + city + createdAt + email + id + medium + name + passwordDigest + profileImage + state + updatedAt + zipcode + posts { + id + title + details + imageUrl + requestedAmount + currentAmount + artistId + donations { + id + name + email + amount + postId + } + } + } +} +``` **Mutations:**
Create Post: