Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Improved styles (#1558)
  • Loading branch information
rstaib committed Mar 15, 2020
1 parent 79c6c06 commit 08a7ac2
Show file tree
Hide file tree
Showing 29 changed files with 235 additions and 67 deletions.
1 change: 1 addition & 0 deletions website/gatsby-config.js
Expand Up @@ -65,6 +65,7 @@ module.exports = {
resolve: `gatsby-transformer-remark`,
options: {
plugins: [
`gatsby-remark-autolink-headers`,
`gatsby-remark-mermaid`,
{
resolve: `gatsby-remark-prismjs`,
Expand Down
22 changes: 13 additions & 9 deletions website/graphql-types.ts
Expand Up @@ -692,8 +692,8 @@ export type FileFieldsEnum =
'childMarkdownRemark___frontmatter___path' |
'childMarkdownRemark___frontmatter___date' |
'childMarkdownRemark___frontmatter___author' |
'childMarkdownRemark___frontmatter___authorURL' |
'childMarkdownRemark___frontmatter___authorImageURL' |
'childMarkdownRemark___frontmatter___authorUrl' |
'childMarkdownRemark___frontmatter___authorImageUrl' |
'childMarkdownRemark___excerpt' |
'childMarkdownRemark___rawMarkdownBody' |
'childMarkdownRemark___fileAbsolutePath' |
Expand Down Expand Up @@ -1456,8 +1456,8 @@ export type MarkdownRemarkFieldsEnum =
'frontmatter___path' |
'frontmatter___date' |
'frontmatter___author' |
'frontmatter___authorURL' |
'frontmatter___authorImageURL' |
'frontmatter___authorUrl' |
'frontmatter___authorImageUrl' |
'excerpt' |
'rawMarkdownBody' |
'fileAbsolutePath' |
Expand Down Expand Up @@ -1581,8 +1581,8 @@ export type MarkdownRemarkFrontmatter = {
path?: Maybe<Scalars['String']>;
date?: Maybe<Scalars['Date']>;
author?: Maybe<Scalars['String']>;
authorURL?: Maybe<Scalars['String']>;
authorImageURL?: Maybe<Scalars['String']>;
authorUrl?: Maybe<Scalars['String']>;
authorImageUrl?: Maybe<Scalars['String']>;
};


Expand All @@ -1598,8 +1598,8 @@ export type MarkdownRemarkFrontmatterFilterInput = {
path?: Maybe<StringQueryOperatorInput>;
date?: Maybe<DateQueryOperatorInput>;
author?: Maybe<StringQueryOperatorInput>;
authorURL?: Maybe<StringQueryOperatorInput>;
authorImageURL?: Maybe<StringQueryOperatorInput>;
authorUrl?: Maybe<StringQueryOperatorInput>;
authorImageUrl?: Maybe<StringQueryOperatorInput>;
};

export type MarkdownRemarkGroupConnection = {
Expand Down Expand Up @@ -2444,6 +2444,7 @@ export type SitePageFieldsEnum =
'pluginCreator___pluginOptions___plugins___name' |
'pluginCreator___pluginOptions___plugins___version' |
'pluginCreator___pluginOptions___plugins___browserAPIs' |
'pluginCreator___pluginOptions___plugins___ssrAPIs' |
'pluginCreator___pluginOptions___plugins___pluginFilepath' |
'pluginCreator___pluginOptions___name' |
'pluginCreator___pluginOptions___path' |
Expand Down Expand Up @@ -2656,6 +2657,7 @@ export type SitePluginFieldsEnum =
'pluginOptions___plugins___pluginOptions___showLineNumbers' |
'pluginOptions___plugins___pluginOptions___maxWidth' |
'pluginOptions___plugins___browserAPIs' |
'pluginOptions___plugins___ssrAPIs' |
'pluginOptions___plugins___pluginFilepath' |
'pluginOptions___name' |
'pluginOptions___path' |
Expand Down Expand Up @@ -2853,6 +2855,7 @@ export type SitePluginPluginOptionsPlugins = {
version?: Maybe<Scalars['String']>;
pluginOptions?: Maybe<SitePluginPluginOptionsPluginsPluginOptions>;
browserAPIs?: Maybe<Array<Maybe<Scalars['String']>>>;
ssrAPIs?: Maybe<Array<Maybe<Scalars['String']>>>;
pluginFilepath?: Maybe<Scalars['String']>;
};

Expand All @@ -2863,6 +2866,7 @@ export type SitePluginPluginOptionsPluginsFilterInput = {
version?: Maybe<StringQueryOperatorInput>;
pluginOptions?: Maybe<SitePluginPluginOptionsPluginsPluginOptionsFilterInput>;
browserAPIs?: Maybe<StringQueryOperatorInput>;
ssrAPIs?: Maybe<StringQueryOperatorInput>;
pluginFilepath?: Maybe<StringQueryOperatorInput>;
};

Expand Down Expand Up @@ -2987,7 +2991,7 @@ export type GetBlogArticleQueryVariables = {

export type GetBlogArticleQuery = { markdownRemark: Maybe<(
Pick<MarkdownRemark, 'html'>
& { frontmatter: Maybe<Pick<MarkdownRemarkFrontmatter, 'author' | 'date' | 'path' | 'title'>> }
& { frontmatter: Maybe<Pick<MarkdownRemarkFrontmatter, 'author' | 'authorImageUrl' | 'authorUrl' | 'date' | 'path' | 'title'>> }
)>, site: Maybe<{ siteMetadata: Maybe<Pick<SiteSiteMetadata, 'baseUrl'>> }> };

export type GatsbyImageSharpFixedFragment = Pick<ImageSharpFixed, 'base64' | 'width' | 'height' | 'src' | 'srcSet'>;
Expand Down
1 change: 1 addition & 0 deletions website/package.json
Expand Up @@ -34,6 +34,7 @@
"gatsby-plugin-styled-components": "^3.1.19",
"gatsby-plugin-ts": "^2.2.3",
"gatsby-plugin-web-font-loader": "^1.0.4",
"gatsby-remark-autolink-headers": "^2.1.25",
"gatsby-remark-images": "^3.1.49",
"gatsby-remark-mermaid": "^1.2.0",
"gatsby-remark-prismjs": "^3.3.34",
Expand Down
6 changes: 3 additions & 3 deletions website/src/blog/2013-09-12-jquery-steps-form-wizard.md.md
Expand Up @@ -3,11 +3,11 @@ path: "/blog/2013/09/12/jquery-steps-form-wizard"
date: "2013-09-12"
title: "How to create a Form Wizard using jQuery Steps"
author: "Rafael Staib"
authorURL: https://github.com/rstaib
authorImageURL: https://avatars0.githubusercontent.com/u/4325318?s=100&v=4
authorUrl: https://github.com/rstaib
authorImageUrl: https://avatars0.githubusercontent.com/u/4325318?s=100&v=4
---

This blog article was previously published on _http://www.rafaelstaib.com/post/How-to-create-a-Form-Wizard-using-jQuery-Steps_.
This blog article was previously published on http://www.rafaelstaib.com/post/How-to-create-a-Form-Wizard-using-jQuery-Steps.

## Motivation

Expand Down
4 changes: 2 additions & 2 deletions website/src/blog/2018-05-03-react-rasta-1.0.0.md
Expand Up @@ -3,8 +3,8 @@ path: "/blog/2018/05/03/react-rasta-1.0.0"
date: "2018-05-03"
title: "React Rasta 1.0.0"
author: "Rafael Staib"
authorURL: https://github.com/rstaib
authorImageURL: https://avatars0.githubusercontent.com/u/4325318?s=100&v=4
authorUrl: https://github.com/rstaib
authorImageUrl: https://avatars0.githubusercontent.com/u/4325318?s=100&v=4
---

Today we proudly released the first version of _React Rasta_.
Expand Down
4 changes: 2 additions & 2 deletions website/src/blog/2018-07-30-green-donut-0.2.0.md
Expand Up @@ -3,8 +3,8 @@ path: "/blog/2018/07/30/green-donut-0.2.0"
date: "2018-07-30"
title: "Green Donut 0.2.0"
author: "Rafael Staib"
authorURL: https://github.com/rstaib
authorImageURL: https://avatars0.githubusercontent.com/u/4325318?s=100&v=4
authorUrl: https://github.com/rstaib
authorImageUrl: https://avatars0.githubusercontent.com/u/4325318?s=100&v=4
---

Today we proudly released the first version of _Green Donut_ -- a _DataLoader_ implementation for _.net core_ and _classic_.
Expand Down
4 changes: 2 additions & 2 deletions website/src/blog/2018-07-31-hot-chocolate-0.4.0.md
Expand Up @@ -3,8 +3,8 @@ path: "/blog/2018/07/31/hot-chocolate-0.4.0"
date: "2018-07-31"
title: "GraphQL - Hot Chocolate 0.4.0"
author: Michael Staib
authorURL: https://github.com/michaelstaib
authorImageURL: https://avatars1.githubusercontent.com/u/9714350?s=100&v=4
authorUrl: https://github.com/michaelstaib
authorImageUrl: https://avatars1.githubusercontent.com/u/9714350?s=100&v=4
---

With this version we introduce support for _DataLoaders_ and custom context objects.
Expand Down
4 changes: 2 additions & 2 deletions website/src/blog/2018-09-02-hot-chocolate-0.4.5.md
Expand Up @@ -3,8 +3,8 @@ path: "/blog/2018/09/02/hot-chocolate-0.4.5"
date: "2018-09-02"
title: "GraphQL - Hot Chocolate 0.4.5"
author: Michael Staib
authorURL: https://github.com/michaelstaib
authorImageURL: https://avatars1.githubusercontent.com/u/9714350?s=100&v=4
authorUrl: https://github.com/michaelstaib
authorImageUrl: https://avatars1.githubusercontent.com/u/9714350?s=100&v=4
---

With version 0.4.5 we closed a lot of spec gaps and refined the schema configuration API.
Expand Down
4 changes: 2 additions & 2 deletions website/src/blog/2018-11-07-docusaurus-docs-redirect.md
Expand Up @@ -3,8 +3,8 @@ path: "/blog/2018/11/07/docusaurus-docs-redirect"
date: "2018-11-07"
title: "Docusaurus - How to redirect requests to /docs to a default url instead of getting a 404 error"
author: "Rafael Staib"
authorURL: https://github.com/rstaib
authorImageURL: https://avatars0.githubusercontent.com/u/4325318?s=100&v=4
authorUrl: https://github.com/rstaib
authorImageUrl: https://avatars0.githubusercontent.com/u/4325318?s=100&v=4
---

I recently run into an HTTP 404 error when calling /docs on my _Docusaurus_ websites. This isn't
Expand Down
4 changes: 2 additions & 2 deletions website/src/blog/2019-01-24-schema-stitching.md
Expand Up @@ -3,8 +3,8 @@ path: "/blog/2019/01/24/schema-stitching"
date: "2019-01-24"
title: "GraphQL - Schema Stitching"
author: Michael Staib
authorURL: https://github.com/michaelstaib
authorImageURL: https://avatars1.githubusercontent.com/u/9714350?s=100&v=4
authorUrl: https://github.com/michaelstaib
authorImageUrl: https://avatars1.githubusercontent.com/u/9714350?s=100&v=4
---

What is schema stitching actually? Schema stitching is the capability to merge multiple GraphQL schemas into one schema on which queries can be queried.
Expand Down
4 changes: 2 additions & 2 deletions website/src/blog/2019-02-04-hot-chocolate-0.7.0.md
Expand Up @@ -3,8 +3,8 @@ path: "/blog/2019/02/04/hot-chocolate-0.7.0"
date: "2019-02-04"
title: "GraphQL - Hot Chocolate 0.7.0"
author: Michael Staib
authorURL: https://github.com/michaelstaib
authorImageURL: https://avatars1.githubusercontent.com/u/9714350?s=100&v=4
authorUrl: https://github.com/michaelstaib
authorImageUrl: https://avatars1.githubusercontent.com/u/9714350?s=100&v=4
---

Today we have released Hot Chocolate version 0.7.0 which brings a lot of new features, improvements and bug fixes. With this post I walk you through the major changes.
Expand Down
Expand Up @@ -3,8 +3,8 @@ path: "/blog/2019/02/04/instrumentation-and-apollo-tracing"
date: "2019-02-04"
title: "GraphQL .NET Instrumentation API and Apollo Tracing"
author: Rafael Staib
authorURL: https://github.com/rstaib
authorImageURL: https://avatars0.githubusercontent.com/u/4325318?s=100&v=4
authorUrl: https://github.com/rstaib
authorImageUrl: https://avatars0.githubusercontent.com/u/4325318?s=100&v=4
---

Today we have released Hot Chocolate `0.7.0`, containing one cool new feature,
Expand Down
4 changes: 2 additions & 2 deletions website/src/blog/2019-02-20-schema-stitching.md
Expand Up @@ -3,8 +3,8 @@ path: "/blog/2019/02/20/schema-stitching"
date: "2019-02-20"
title: "GraphQL - Schema Stitching with Version 8"
author: Michael Staib
authorURL: https://github.com/michaelstaib
authorImageURL: https://avatars1.githubusercontent.com/u/9714350?s=100&v=4
authorUrl: https://github.com/michaelstaib
authorImageUrl: https://avatars1.githubusercontent.com/u/9714350?s=100&v=4
---

With version 8 of Hot Chocolate we have mainly focused on schema stitching. One of the most requested features in this area was auto-stitching. Auto-stitching will enable us to automatically pull in schemas from other GraphQL servers and merge those into one schema.
Expand Down
4 changes: 2 additions & 2 deletions website/src/blog/2019-03-04-hot-chocolate-0.8.0.md
Expand Up @@ -3,8 +3,8 @@ path: "/blog/2019/03/04/hot-chocolate-0.8.0"
date: "2019-03-04"
title: "GraphQL - Hot Chocolate 0.8.0"
author: Michael Staib
authorURL: https://github.com/michaelstaib
authorImageURL: https://avatars1.githubusercontent.com/u/9714350?s=100&v=4
authorUrl: https://github.com/michaelstaib
authorImageUrl: https://avatars1.githubusercontent.com/u/9714350?s=100&v=4
---

Today we are releasing Hot Chocolate version 8 (0.8.0) which mainly focused on schema stitching and brings our stitching layer to a whole new level.
Expand Down
4 changes: 2 additions & 2 deletions website/src/blog/2019-03-19-logging-with-hotchocolate.md
Expand Up @@ -3,8 +3,8 @@ path: "/blog/2019/03/19/logging-with-hotchocolate"
date: "2019-03-19"
title: "GraphQL - Tracing with Hot Chocolate"
author: Michael Staib
authorURL: https://github.com/michaelstaib
authorImageURL: https://avatars1.githubusercontent.com/u/9714350?s=100&v=4
authorUrl: https://github.com/michaelstaib
authorImageUrl: https://avatars1.githubusercontent.com/u/9714350?s=100&v=4
---

One common question that comes up on our slack channel is if _Hot Chocolate_ supports some kind of logging infrastructure. My personal opinion here is that logging/tracing is often very project specific and an API should not force one specific logging solution onto its users.
Expand Down
4 changes: 2 additions & 2 deletions website/src/blog/2019-03-31-hot-chocolate-0.8.1.md
Expand Up @@ -3,8 +3,8 @@ path: "/blog/2019/03/31/hot-chocolate-0.8.1"
date: "2019-03-31"
title: "GraphQL - Hot Chocolate 0.8.1"
author: Michael Staib
authorURL: https://github.com/michaelstaib
authorImageURL: https://avatars1.githubusercontent.com/u/9714350?s=100&v=4
authorUrl: https://github.com/michaelstaib
authorImageUrl: https://avatars1.githubusercontent.com/u/9714350?s=100&v=4
---

Today we release version 8.1 (0.8.1) of _Hot Chocolate_. This release brings improvements and bug fixes to the current version 8 release.
Expand Down
4 changes: 2 additions & 2 deletions website/src/blog/2019-04-11-integration-tests.md
Expand Up @@ -3,8 +3,8 @@ path: "/blog/2019/04/11/integration-tests"
date: "2019-04-11"
title: "GraphQL - How to write integration tests against Hot Chocolate"
author: Michael Staib
authorURL: https://github.com/michaelstaib
authorImageURL: https://avatars1.githubusercontent.com/u/9714350?s=100&v=4
authorUrl: https://github.com/michaelstaib
authorImageUrl: https://avatars1.githubusercontent.com/u/9714350?s=100&v=4
---

Today I was asked in our slack channel how one could write an integration test against _Hot Chocolate_ without setting up an ASP.Net Core _TestServer_.
Expand Down
4 changes: 2 additions & 2 deletions website/src/blog/2019-04-12-type-system.md
Expand Up @@ -3,8 +3,8 @@ path: "/blog/2019/04/12/type-system"
date: "2019-04-12"
title: "GraphQL - Hot Chocolate 9.0.0 - Type System"
author: Michael Staib
authorURL: https://github.com/michaelstaib
authorImageURL: https://avatars1.githubusercontent.com/u/9714350?s=100&v=4
authorUrl: https://github.com/michaelstaib
authorImageUrl: https://avatars1.githubusercontent.com/u/9714350?s=100&v=4
---

Originally, I wanted to write a little post about what we are currently working on in version 9 and how those things are coming along, but every time I started writing on this post it got longer and longer and it felt a bit too messy.
Expand Down
4 changes: 2 additions & 2 deletions website/src/blog/2019-05-08-performance.md
Expand Up @@ -3,8 +3,8 @@ path: "/blog/2019/05/08/performance"
date: "2019-05-08"
title: "GraphQL - Hot Chocolate 9.0.0 - Performance Improvements"
author: Michael Staib
authorURL: https://github.com/michaelstaib
authorImageURL: https://avatars1.githubusercontent.com/u/9714350?s=100&v=4
authorUrl: https://github.com/michaelstaib
authorImageUrl: https://avatars1.githubusercontent.com/u/9714350?s=100&v=4
---

Today we release preview 27 of version 9 and we are heading toward RC status which we are planning to hit next week.
Expand Down
4 changes: 2 additions & 2 deletions website/src/blog/2019-06-05-hot-chocolate-9.0.0.md
Expand Up @@ -3,8 +3,8 @@ path: "/blog/2019/06/05/hot-chocolate-9.0.0"
date: "2019-06-05"
title: "GraphQL - Hot Chocolate 9.0.0"
author: Michael Staib
authorURL: https://github.com/michaelstaib
authorImageURL: https://avatars1.githubusercontent.com/u/9714350?s=100&v=4
authorUrl: https://github.com/michaelstaib
authorImageUrl: https://avatars1.githubusercontent.com/u/9714350?s=100&v=4
---

Today we have released version 9 of _Hot Chocolate_. This release was mainly focused on the schema APIs and performance. Furthermore, we started work on the wider _ChilliCream GraphQL Platform_ and today you will get some insides where we are heading with this.
Expand Down
4 changes: 2 additions & 2 deletions website/src/blog/2019-08-14-hot-chocolate-10.0.0.md
Expand Up @@ -3,8 +3,8 @@ path: "/blog/2019/08/14/hot-chocolate-10.0.0"
date: "2019-08-14"
title: "GraphQL - Hot Chocolate 10.0.0"
author: Michael Staib
authorURL: https://github.com/michaelstaib
authorImageURL: https://avatars1.githubusercontent.com/u/9714350?s=100&v=4
authorUrl: https://github.com/michaelstaib
authorImageUrl: https://avatars1.githubusercontent.com/u/9714350?s=100&v=4
---

![Hot Chocolate](../images/blog/hotchocolate-banner.png)
Expand Down
4 changes: 2 additions & 2 deletions website/src/blog/2019-09-27-strawberry-shake.md
Expand Up @@ -3,8 +3,8 @@ path: "/blog/2019/09/27/strawberry-shake"
date: "2019-09-27"
title: "Building a .NET GraphQL Client API"
author: Michael Staib
authorURL: https://github.com/michaelstaib
authorImageURL: https://avatars1.githubusercontent.com/u/9714350?s=100&v=4
authorUrl: https://github.com/michaelstaib
authorImageUrl: https://avatars1.githubusercontent.com/u/9714350?s=100&v=4
---

![Strawberry Shake](../images/blog/strawberry-shake-banner.png)
Expand Down
4 changes: 2 additions & 2 deletions website/src/blog/2019-11-25-strawberry-shake_2.md
Expand Up @@ -3,8 +3,8 @@ path: "/blog/2019/11/25/strawberry-shake_2"
date: "2019-11-25"
title: "Building a real-time .NET GraphQL Client API"
author: Michael Staib
authorURL: https://github.com/michaelstaib
authorImageURL: https://avatars1.githubusercontent.com/u/9714350?s=100&v=4
authorUrl: https://github.com/michaelstaib
authorImageUrl: https://avatars1.githubusercontent.com/u/9714350?s=100&v=4
---

![Strawberry Shake](../images/blog/strawberry-shake-banner.png)
Expand Down
4 changes: 2 additions & 2 deletions website/src/blog/2019-11-29-schema-design.md
Expand Up @@ -3,8 +3,8 @@ path: "/blog/2019/11/29/schema-design"
date: "2019-11-29"
title: "Lets supercharge your GraphQL schema :)"
author: Michael Staib
authorURL: https://github.com/michaelstaib
authorImageURL: https://avatars1.githubusercontent.com/u/9714350?s=100&v=4
authorUrl: https://github.com/michaelstaib
authorImageUrl: https://avatars1.githubusercontent.com/u/9714350?s=100&v=4
---

![Hot Chocolate](../images/blog/hotchocolate-banner.png)
Expand Down
4 changes: 2 additions & 2 deletions website/src/blog/2019-12-26-hotchocolate-10.3.0.md
Expand Up @@ -3,8 +3,8 @@ path: "/blog/2019/12/26/hot-chocolate-10.3.0"
date: "2019-12-26"
title: "GraphQL - Hot Chocolate 10.3.0"
author: Michael Staib
authorURL: https://github.com/michaelstaib
authorImageURL: https://avatars1.githubusercontent.com/u/9714350?s=100&v=4
authorUrl: https://github.com/michaelstaib
authorImageUrl: https://avatars1.githubusercontent.com/u/9714350?s=100&v=4
---

![Hot Chocolate](../images/blog/hotchocolate-banner.png)
Expand Down

0 comments on commit 08a7ac2

Please sign in to comment.