Skip to content

Commit

Permalink
docs(readme): Add banner
Browse files Browse the repository at this point in the history
  • Loading branch information
irishcarbomb777 committed Apr 10, 2024
1 parent 408e403 commit 3f9d1d7
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 10 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# Welcome to thinairthings!
<p>
<img src="readme.assets/github.banner.png">
</P>

## This is our graph library. It helps you build graphs.

Expand Down
Binary file added readme.assets/github.banner.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 9 additions & 9 deletions src/testing.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,18 +70,18 @@ const {
]
})

// const newJobNode = await createNode('Job', {
// 'title': 'Software Engineer',
// 'primarySkill': 'Python',
// 'startDate': new Date().toISOString(),
// })
const newJobNode = await createNode('Job', {
'title': 'Software Engineer',
'primarySkill': 'Python',
'startDate': new Date().toISOString(),
})

// const updatedNode = await updateNode('Job', newJobNode.nodeId, (nodeState) => {
// nodeState.description = 'I eat ice cream'
// })
const updatedNode = await updateNode('Job', newJobNode.nodeId, (nodeState) => {
nodeState.description = 'I eat ice cream'
})

const gotUserNode = await getNode('User', 'email', 'dan@blueprintapparelcompany.co')
console.log(gotUserNode)
// console.log(gotUserNode)
// const gotJobNode = await getNode('Job', 'nodeId', newJobNode.nodeId)
const gotJobNode = await getNode('Job', 'nodeId', newJobNode.nodeId)
// console.log(gotJobNode)
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
],
"target": "ESNext",
"allowJs": true,
"strictNullChecks": false,
// "strictNullChecks": false,
"skipLibCheck": true,
"strict": true,
"noEmit": true,
Expand Down

0 comments on commit 3f9d1d7

Please sign in to comment.