Ulf Gebhardt 30560bff69
fix(webapp): fix user avatar & post image urls (#8921)
Co-authored-by: Wolfgang Huß <wolle.huss@pjannto.com>
2025-09-25 22:19:27 +02:00

15 lines
225 B
JavaScript

import gql from 'graphql-tag'
export const location = (type, lang) => gql`
fragment location on ${type} {
locationName
location {
id
name: name${lang}
lng
lat
distanceToMe
}
}
`