File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -183,7 +183,7 @@ export const pageQuery = graphql`query PeopleTplQuery($uid: String!) {
183183 }
184184 overlords: allMarkdownRemark(
185185 filter: {fileAbsolutePath: {regex: "//pages/people/bios/*/.*/*.md/"}, frontmatter: {role: {elemMatch: {overlord: {eq: true}}}}}
186- sort: {frontmatter: {score: DESC }}
186+ sort: {frontmatter: {lname: ASC }}
187187 ) {
188188 edges {
189189 node {
@@ -217,7 +217,7 @@ export const pageQuery = graphql`query PeopleTplQuery($uid: String!) {
217217 }
218218 members: allMarkdownRemark(
219219 filter: {fileAbsolutePath: {regex: "//pages/people/bios/*/.*/*.md/"}, frontmatter: {role: {elemMatch: {member: {eq: true}}}}}
220- sort: {frontmatter: {score: DESC }}
220+ sort: {frontmatter: {lname: ASC }}
221221 ) {
222222 edges {
223223 node {
@@ -251,7 +251,7 @@ export const pageQuery = graphql`query PeopleTplQuery($uid: String!) {
251251 }
252252 accomplices: allMarkdownRemark(
253253 filter: {fileAbsolutePath: {regex: "//pages/people/bios/*/.*/*.md/"}, frontmatter: {role: {elemMatch: {accomplice: {eq: true}}}}}
254- sort: [ {frontmatter: {score: DESC}}, {frontmatter: { lname: ASC}}]
254+ sort: {frontmatter: {lname: ASC}}
255255 ) {
256256 edges {
257257 node {
You can’t perform that action at this time.
0 commit comments