Skip to content
This repository was archived by the owner on Jun 15, 2023. It is now read-only.

Extension points with a multiline string #183

Closed
jfrolich opened this issue Nov 24, 2020 · 2 comments
Closed

Extension points with a multiline string #183

jfrolich opened this issue Nov 24, 2020 · 2 comments

Comments

@jfrolich
Copy link

Currently formatted like this:

%graphql(
  `
  fragment ActivityBefore_ActivityCategory on ActivityCategory
  @argumentDefinitions(pixelRatio: {type: "Float!"}) {
    id
    title
    description
    icon(scaleFactor: $pixelRatio, width: 105, height: 100) {
      url
    }
    iconDarkMode(scaleFactor: $pixelRatio, width: 105, height: 100) {
      url
    }
  }
`
)

Improvement:

%graphql(`
  fragment ActivityBefore_ActivityCategory on ActivityCategory
  @argumentDefinitions(pixelRatio: {type: "Float!"}) {
    id
    title
    description
    icon(scaleFactor: $pixelRatio, width: 105, height: 100) {
      url
    }
    iconDarkMode(scaleFactor: $pixelRatio, width: 105, height: 100) {
      url
    }
  }
`)

Maybe this is feasible:

%graphql`
  fragment ActivityBefore_ActivityCategory on ActivityCategory
  @argumentDefinitions(pixelRatio: {type: "Float!"}) {
    id
    title
    description
    icon(scaleFactor: $pixelRatio, width: 105, height: 100) {
      url
    }
    iconDarkMode(scaleFactor: $pixelRatio, width: 105, height: 100) {
      url
    }
  }
`
@jfrolich
Copy link
Author

Probably (very) related: #171

@IwanKaramazow
Copy link
Contributor

Yes indeed, I'll put the code examples in that issue (#171 ) and continue to track it there.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants