Skip to content

Commit

Permalink
docs: Add link addresses and another query to README
Browse files Browse the repository at this point in the history
  • Loading branch information
awiley33 authored Oct 23, 2023
1 parent d06770f commit 6ce59cd
Showing 1 changed file with 36 additions and 2 deletions.
38 changes: 36 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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:**<br>
Create Post:
Expand Down

0 comments on commit 6ce59cd

Please sign in to comment.