Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -110,10 +110,14 @@ span.pink {
color: #6c5b7b;
}

.section.server {
.section.servers {
background-color: #515c7c;
}

.section.servers a {
color: #515c7c;
}

.section.dbProxy {
background-color: #355c7d;
}
Expand Down
10 changes: 1 addition & 9 deletions src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,7 @@ class App extends Component {
<Section type="client" data={toolsData["client"]} />
<Section type="gateway" data={toolsData["gateway"]} />
<Section type="graphqlServer" data={toolsData["graphqlServer"]} />
<StaticSection type="server" name="Servers">
<p>
This is where the business logic (e.g. user authentication, data
processing) for your app traditionally lives. Common examples are
Express apps, Django apps, Laravel apps, etc. They may also
provide RESTful API endpoints (there's nothing saying you can't
use GraphQL and REST in the same system.)
</p>
</StaticSection>
<Section type="servers" data={toolsData["servers"]} />
<Section type="dbProxy" data={toolsData["dbProxy"]} />
<StaticSection type="data" name="Data">
<p>
Expand Down
14 changes: 14 additions & 0 deletions src/toolsData.js
Original file line number Diff line number Diff line change
Expand Up @@ -311,6 +311,20 @@ export default {
}
]
},
servers: {
name: "Servers",
description:
"This is where the business logic (e.g. user authentication, data processing) for your app traditionally lives. Common examples are Express apps, Django apps, Laravel apps, etc. They may also provide RESTful API endpoints (there's nothing saying you can't use GraphQL and REST in the same system).",
tools: [
{
name: "AppSync Resolvers",
description:
"Package to write, configure, and manage serverless AWS Lambda functions in Golang as custom data resolvers for AWS AppSync queries and fields.",
github: "https://github.com/sbstjn/appsync-resolvers",
language: Go
}
]
},
dbProxy: {
name: "Database-to-GraphQL Servers",
description:
Expand Down