Variables
Const AUTHOR_BY_ID
AUTHOR_BY_ID: DocumentNode = gql`query authorOne($_id: MongoID!) {authorOne(filter: { _id: $_id }) {...${AUTHOR_FRAGMENT_NAME}}}${AUTHOR_FRAGMENT}`
Defined in modules/ukulele/react/graphql/author.ts:158
Const AUTHOR_CREATE_ONE
AUTHOR_CREATE_ONE: DocumentNode = gql`mutation authorCreateOne($record: CreateOneAuthorInput!) {authorCreateOne(record: $record) {record {...${AUTHOR_FRAGMENT_NAME}}}}${AUTHOR_FRAGMENT}`
Defined in modules/ukulele/react/graphql/author.ts:44
Const AUTHOR_FRAGMENT
AUTHOR_FRAGMENT: DocumentNode = gql`fragment ${AUTHOR_FRAGMENT_NAME} on Author {_idnamemembers {_idnamemembers {_idname}}songs {_idtitleliked}}`
Defined in modules/ukulele/react/graphql/author.ts:16
Const AUTHOR_FRAGMENT_NAME
AUTHOR_FRAGMENT_NAME: "AuthorFragment" = "AuthorFragment"
Defined in modules/ukulele/react/graphql/author.ts:15
Const AUTHOR_MANY
AUTHOR_MANY: DocumentNode = gql`query authorMany($filter: FilterFindManyAuthorInput, $limit: Int) {authorMany(filter: $filter, limit: $limit) {...${AUTHOR_FRAGMENT_NAME}}}${AUTHOR_FRAGMENT}`
Defined in modules/ukulele/react/graphql/author.ts:89
Const AUTHOR_REMOVE_BY_ID
AUTHOR_REMOVE_BY_ID: DocumentNode = gql`mutation authorRemoveById($_id: MongoID!) {authorRemoveById(_id: $_id) {record {_idname}}}`
Defined in modules/ukulele/react/graphql/author.ts:131
Const AUTHOR_SEARCH
AUTHOR_SEARCH: DocumentNode = gql`query authorSearch($query: String!) {authorSearch(query: $query) {...${AUTHOR_FRAGMENT_NAME}}}${AUTHOR_FRAGMENT}`
Defined in modules/ukulele/react/graphql/author.ts:71
Const AUTHOR_UPDATE_BY_ID
AUTHOR_UPDATE_BY_ID: DocumentNode = gql`mutation authorUpdateById($record: UpdateByIdAuthorInput!) {authorUpdateById(record: $record) {record {_idname}}}`
Defined in modules/ukulele/react/graphql/author.ts:112
Const CHORD_BY_ID
CHORD_BY_ID: DocumentNode = gql`query chordOne($name: String!) {chordOne(filter: { name: $name }) {...${CHORD_FRAGMENT_NAME}}}${CHORD_FRAGMENT}`
Defined in modules/ukulele/react/graphql/chord.ts:24
Const CHORD_FRAGMENT
CHORD_FRAGMENT: DocumentNode = gql`fragment ${CHORD_FRAGMENT_NAME} on Chord {_idnamestringstype}`
Defined in modules/ukulele/react/graphql/chord.ts:7
Const CHORD_FRAGMENT_NAME
CHORD_FRAGMENT_NAME: "ChordFragment" = "ChordFragment"
Defined in modules/ukulele/react/graphql/chord.ts:6
Const CHORD_MANY
CHORD_MANY: DocumentNode = gql`query chordMany($filter: FilterFindManyChordInput) {chordMany(filter: $filter) {...${CHORD_FRAGMENT_NAME}}}${CHORD_FRAGMENT}`
Defined in modules/ukulele/react/graphql/chord.ts:62
Const CHORD_PROGRESSION_BY_CREATOR
CHORD_PROGRESSION_BY_CREATOR: DocumentNode = gql`query chordProgressionMany($creator: MongoID!) {chordProgressionMany(filter: { creator: $creator }) {namechordsstrummingPattern}}`
Defined in modules/ukulele/react/graphql/chordProgression.ts:36
Const CHORD_PROGRESSION_BY_ID
CHORD_PROGRESSION_BY_ID: DocumentNode = gql`query chordProgressionById($_id: MongoID!) {chordProgressionById(_id: $_id) {...${CHORD_PROGRESSION_FRAGMENT_NAME}}}${CHORD_PROGRESSION_FRAGMENT}`
Defined in modules/ukulele/react/graphql/chordProgression.ts:63
Const CHORD_PROGRESSION_CREATE_ONE
CHORD_PROGRESSION_CREATE_ONE: DocumentNode = gql`mutation chordProgressionCreateOne($chordProgression: ChordProgressionInput!,$tempo: Float,$strummingPattern: [Float]) {chordProgressionCreateOne(chordProgression: $chordProgressiontempo: $tempostrummingPattern: $strummingPattern) {record {...${CHORD_PROGRESSION_FRAGMENT_NAME}}}}${CHORD_PROGRESSION_FRAGMENT}`
Defined in modules/ukulele/react/graphql/chordProgression.ts:94
Const CHORD_PROGRESSION_FRAGMENT
CHORD_PROGRESSION_FRAGMENT: DocumentNode = gql`fragment ${CHORD_PROGRESSION_FRAGMENT_NAME} on ChordProgression {_idnamecreatorIdchords{...${CHORD_FRAGMENT_NAME}}strummingPattern {...${STRUMMING_PATTERN_FRAGMENT_NAME}}}${CHORD_FRAGMENT}${STRUMMING_PATTERN_FRAGMENT}`
Defined in modules/ukulele/react/graphql/chordProgression.ts:12
Const CHORD_PROGRESSION_FRAGMENT_NAME
CHORD_PROGRESSION_FRAGMENT_NAME: "ChordProgressionFragment" = "ChordProgressionFragment"
Defined in modules/ukulele/react/graphql/chordProgression.ts:11
Const CHORD_PROGRESSION_UPDATE_BY_ID
CHORD_PROGRESSION_UPDATE_BY_ID: DocumentNode = gql`mutation chordProgressionUpdateById($_id: MongoID!,$chordProgression: ChordProgressionInput!,$tempo: Float,$strummingPattern: [Float]) {chordProgressionUpdateById(_id: $_idchordProgression: $chordProgressiontempo: $tempostrummingPattern: $strummingPattern) {record {...${CHORD_PROGRESSION_FRAGMENT_NAME}}}}${CHORD_PROGRESSION_FRAGMENT}`
Defined in modules/ukulele/react/graphql/chordProgression.ts:134
Const CHORD_SEARCH
CHORD_SEARCH: DocumentNode = gql`query chordSearch($query: String!) {chordSearch(query: $query) {...${CHORD_FRAGMENT_NAME}}}${CHORD_FRAGMENT}`
Defined in modules/ukulele/react/graphql/chord.ts:45
Const LIKED_SONGS
LIKED_SONGS: DocumentNode = gql`query likedSongs {likedSongs {song{...${SONG_FRAGMENT_NAME}}}}${SONG_FRAGMENT}`
Defined in modules/ukulele/react/graphql/song.ts:171
Const SONG_BY_ID
SONG_BY_ID: DocumentNode = gql`query songOne($_id: MongoID!) {songOne(filter: { _id: $_id }) {...${SONG_FRAGMENT_NAME}}}${SONG_FRAGMENT}`
Defined in modules/ukulele/react/graphql/song.ts:150
Const SONG_CREATE_ONE
SONG_CREATE_ONE: DocumentNode = gql`mutation songCreateOne($song: SongInput!, $tempo: Float, $strummingPattern: [Float]) {songCreateOne(song: $songtempo: $tempostrummingPattern: $strummingPattern) {record {...${SONG_FRAGMENT_NAME}}}}${SONG_FRAGMENT}`
Defined in modules/ukulele/react/graphql/song.ts:60
Const SONG_DISLIKE
SONG_DISLIKE: DocumentNode = gql`mutation songDislike($songId: MongoID!) {songDislike(songId: $songId) {record {song{...${SONG_FRAGMENT_NAME}}}}}${SONG_FRAGMENT}`
Defined in modules/ukulele/react/graphql/song.ts:221
Const SONG_FRAGMENT
SONG_FRAGMENT: DocumentNode = gql`fragment ${SONG_FRAGMENT_NAME} on Song {_idtitlelikedchords{...${CHORD_FRAGMENT_NAME}}lyrics{lyricschords{offsetchord{...${CHORD_FRAGMENT_NAME}}}}author {...${AUTHOR_FRAGMENT_NAME}}strummingPattern {...${STRUMMING_PATTERN_FRAGMENT_NAME}}}${CHORD_FRAGMENT}${AUTHOR_FRAGMENT}${STRUMMING_PATTERN_FRAGMENT}`
Defined in modules/ukulele/react/graphql/song.ts:14
Const SONG_FRAGMENT_NAME
SONG_FRAGMENT_NAME: "SongFragment" = "SongFragment"
Defined in modules/ukulele/react/graphql/song.ts:13
Const SONG_LIKE
SONG_LIKE: DocumentNode = gql`mutation songLike($songId: MongoID!) {songLike(songId: $songId) {record {song{...${SONG_FRAGMENT_NAME}}}}}${SONG_FRAGMENT}`
Defined in modules/ukulele/react/graphql/song.ts:195
Const SONG_MANY
SONG_MANY: DocumentNode = gql`query songMany($filter: FilterFindManySongInput, $limit: Int) {songMany(filter: $filter, limit: $limit) {...${SONG_FRAGMENT_NAME}}}${SONG_FRAGMENT}`
Defined in modules/ukulele/react/graphql/song.ts:127
Const SONG_UPDATE_BY_ID
SONG_UPDATE_BY_ID: DocumentNode = gql`mutation songUpdateById($_id: MongoID!, $song: SongInput!, $tempo: Float, $strummingPattern: [Float]) {songUpdateById(_id: $_idsong: $songtempo: $tempostrummingPattern: $strummingPattern) {record {...${SONG_FRAGMENT_NAME}}}}${SONG_FRAGMENT}`
Defined in modules/ukulele/react/graphql/song.ts:94
Const STRUMMING_PATTERN_FRAGMENT
STRUMMING_PATTERN_FRAGMENT: DocumentNode = gql`fragment ${STRUMMING_PATTERN_FRAGMENT_NAME} on StrummingPattern {_idpatternmetronomePreset {tempo}}`
Defined in modules/ukulele/react/graphql/strummingPattern.ts:6
Const STRUMMING_PATTERN_FRAGMENT_NAME
STRUMMING_PATTERN_FRAGMENT_NAME: "StrummingPatternFragment" = "StrummingPatternFragment"
Defined in modules/ukulele/react/graphql/strummingPattern.ts:5