mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 04:26:41 -04:00
21 lines
No EOL
294 B
JavaScript
21 lines
No EOL
294 B
JavaScript
import { registerFragment } from 'meteor/vulcan:core';
|
|
|
|
registerFragment(`
|
|
fragment MovieFragment on Movie {
|
|
_id
|
|
createdAt
|
|
userId
|
|
user {
|
|
displayName
|
|
}
|
|
name
|
|
year
|
|
review
|
|
currentUserVotes{
|
|
_id
|
|
voteType
|
|
power
|
|
}
|
|
baseScore
|
|
}
|
|
`); |