Update comments

This commit is contained in:
lowlighter
2021-02-17 12:35:25 +01:00
parent aacc9cc052
commit 050fb2e330
3 changed files with 3 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
/**Mocked data */ /**Mocked data */
export default function({faker, query, login = faker.internet.userName()}) { export default function({faker, query, login = faker.internet.userName()}) {
console.debug("metrics/compute/mocks > mocking graphql api result > People") console.debug("metrics/compute/mocks > mocking graphql api result > people/repository")
const type = query.match(/(?<type>stargazers|watchers)[(]/)?.groups?.type ?? "(unknown type)" const type = query.match(/(?<type>stargazers|watchers)[(]/)?.groups?.type ?? "(unknown type)"
return /after: "MOCKED_CURSOR"/m.test(query) ? ({ return /after: "MOCKED_CURSOR"/m.test(query) ? ({
user:{ user:{

View File

@@ -1,6 +1,6 @@
/**Mocked data */ /**Mocked data */
export default function({faker, query, login = faker.internet.userName()}) { export default function({faker, query, login = faker.internet.userName()}) {
console.debug("metrics/compute/mocks > mocking graphql api result > People") console.debug("metrics/compute/mocks > mocking graphql api result > people/sponsors")
const type = query.match(/(?<type>sponsorshipsAsSponsor|sponsorshipsAsMaintainer)[(]/)?.groups?.type ?? "(unknown type)" const type = query.match(/(?<type>sponsorshipsAsSponsor|sponsorshipsAsMaintainer)[(]/)?.groups?.type ?? "(unknown type)"
return /after: "MOCKED_CURSOR"/m.test(query) ? ({ return /after: "MOCKED_CURSOR"/m.test(query) ? ({
user:{ user:{

View File

@@ -1,4 +1,4 @@
// //Imports
import listEventsForAuthenticatedUser from "./listEventsForAuthenticatedUser.mjs" import listEventsForAuthenticatedUser from "./listEventsForAuthenticatedUser.mjs"
/**Mocked data */ /**Mocked data */