mirror of
https://github.com/vale981/Vulcan
synced 2025-03-08 19:11:38 -05:00
36 lines
No EOL
570 B
JavaScript
36 lines
No EOL
570 B
JavaScript
import { registerFragment } from 'meteor/vulcan:core';
|
|
|
|
registerFragment(`
|
|
fragment ChargeFragment on Charge {
|
|
_id
|
|
createdAt
|
|
createdAtFormatted
|
|
createdAtFormattedShort
|
|
user{
|
|
_id
|
|
slug
|
|
username
|
|
displayName
|
|
pageUrl
|
|
emailHash
|
|
avatarUrl
|
|
}
|
|
type
|
|
source
|
|
productKey
|
|
test
|
|
associatedCollection
|
|
associatedId
|
|
|
|
# doesn't work with unions, maybe try interface?
|
|
# associatedDocument{
|
|
# _id
|
|
# pageUrl
|
|
# }
|
|
|
|
amount
|
|
properties
|
|
stripeId
|
|
stripeChargeUrl
|
|
}
|
|
`); |