Skip to content

Instantly share code, notes, and snippets.

@njbmartin
Created May 17, 2020 23:38
Show Gist options
  • Save njbmartin/6ca0bd79e0be5980652341ba79c2ebb3 to your computer and use it in GitHub Desktop.
Save njbmartin/6ca0bd79e0be5980652341ba79c2ebb3 to your computer and use it in GitHub Desktop.
Contentful GraphQL query with manual ordering
const data = useStaticQuery(
graphql`
query {
allContentfulRider(sort: { fields: order, order: ASC }) {
nodes {
id
slug
fullName
}
}
}
`
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment