@pareto-engineering/design-system 2.0.0-alpha.6 → 2.0.0-alpha.61
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.env.scripts.example +4 -0
- package/.eslintrc.js +25 -1
- package/babel.config.js +1 -0
- package/dist/cjs/a/{GradientBackground/GradientBackground.js → Alert/Alert.js} +68 -67
- package/dist/cjs/{c/SiteFooter/common/Section → a/Alert}/index.js +3 -3
- package/dist/cjs/a/Alert/styles.scss +74 -0
- package/dist/cjs/{c/BlogContext → a/AppContext}/Context.js +0 -0
- package/dist/cjs/a/AppContext/ContextProvider.js +96 -0
- package/dist/cjs/{c/BlogContext → a/AppContext}/index.js +13 -5
- package/dist/cjs/{c/BlogContext/useBlog.js → a/AppContext/useApp.js} +0 -0
- package/dist/cjs/a/AppContext/useTheme.js +45 -0
- package/dist/cjs/{c/SiteFooter/common/Section/Section.js → a/BackgroundGradient/BackgroundGradient.js} +20 -38
- package/dist/cjs/a/BackgroundGradient/index.js +15 -0
- package/dist/cjs/a/BackgroundGradient/styles.scss +16 -0
- package/dist/cjs/{experimental/GradientBackground/GradientBackground.js → a/ColumnLabel/ColumnLabel.js} +32 -30
- package/dist/cjs/{c/SiteMission → a/ColumnLabel}/index.js +3 -3
- package/dist/cjs/a/ColumnLabel/styles.scss +22 -0
- package/dist/cjs/{c/TeamGallery/TeamGallery.js → a/ContentTree/ContentTree.js} +23 -20
- package/dist/cjs/a/ContentTree/common/Tree/Tree.js +116 -0
- package/dist/cjs/{c/BlogPostsList/common/Card → a/ContentTree/common/Tree}/index.js +3 -3
- package/dist/cjs/a/ContentTree/common/index.js +31 -0
- package/dist/cjs/a/ContentTree/common/useContentTree.js +82 -0
- package/dist/cjs/a/ContentTree/common/useFirstVisibleNode.js +65 -0
- package/dist/cjs/{c/SitePricing → a/ContentTree}/index.js +3 -3
- package/dist/cjs/a/ContentTree/styles.scss +33 -0
- package/dist/cjs/a/Conversation/Conversation.js +14 -8
- package/dist/cjs/a/Conversation/common/Message/Message.js +32 -6
- package/dist/cjs/a/Conversation/styles.scss +132 -33
- package/dist/cjs/{c/SiteFooter/SiteFooter.js → a/Label/Label.js} +28 -14
- package/dist/cjs/{f/fields/TextArea → a/Label}/index.js +3 -3
- package/dist/cjs/a/Label/styles.scss +34 -0
- package/dist/cjs/a/OvalIllustration/OvalIllustration.js +133 -0
- package/dist/cjs/a/OvalIllustration/index.js +15 -0
- package/dist/cjs/a/OvalIllustration/styles.scss +102 -0
- package/dist/cjs/{c/AcceptCookies/AcceptCookies.js → a/Popover/Popover.js} +57 -57
- package/dist/cjs/{c/BlogPost → a/Popover}/index.js +3 -3
- package/dist/cjs/a/Popover/styles.scss +33 -0
- package/dist/cjs/a/Shapes/Shapes.js +9 -1
- package/dist/cjs/a/Shapes/styles.scss +42 -9
- package/dist/cjs/{c/BlogPostsList/BlogPostsList.js → a/SnapScroller/SnapScroller.js} +15 -11
- package/dist/cjs/{c/SiteFooter → a/SnapScroller}/index.js +3 -3
- package/dist/cjs/a/SnapScroller/styles.scss +38 -0
- package/dist/cjs/a/index.js +65 -9
- package/dist/cjs/b/Button/Button.js +10 -4
- package/dist/cjs/b/Button/styles.scss +55 -10
- package/dist/cjs/b/Logo/Logo.js +41 -41
- package/dist/cjs/b/Logo/styles.scss +0 -138
- package/dist/cjs/b/Page/common/PageHelmet/PageHelmet.js +1 -1
- package/dist/cjs/b/Page/common/Section/Section.js +17 -3
- package/dist/cjs/b/SocialMediaButton/SocialMediaButton.js +4 -4
- package/dist/cjs/b/ThemeSelector/ThemeSelector.js +1 -1
- package/dist/cjs/c/ContentSlides/common/HorizontalMenu/HorizontalMenu.js +16 -9
- package/dist/cjs/c/ContentSlides/common/Navigator/Navigator.js +4 -3
- package/dist/cjs/c/ContentSlides/styles.scss +10 -4
- package/dist/cjs/c/{SiteHeaderCTA/SiteHeaderCTA.js → SocialMediaShareButton/SocialMediaShareButton.js} +46 -43
- package/dist/cjs/c/SocialMediaShareButton/index.js +15 -0
- package/dist/cjs/c/SocialMediaShareButton/styles.scss +39 -0
- package/dist/cjs/c/index.js +9 -1
- package/dist/cjs/f/FormInput/FormInput.js +26 -3
- package/dist/cjs/f/FormInput/styles.scss +11 -0
- package/dist/cjs/f/common/Debugger/Debugger.js +1 -1
- package/dist/cjs/f/common/Description/Description.js +20 -14
- package/dist/cjs/f/common/Label/Label.js +1 -1
- package/dist/cjs/f/common/Label/styles.scss +1 -1
- package/dist/cjs/f/fields/ChoicesInput/ChoicesInput.js +1 -1
- package/dist/cjs/f/fields/ChoicesInput/styles.scss +17 -2
- package/dist/cjs/f/fields/QueryCombobox/QueryCombobox.js +235 -0
- package/dist/cjs/f/fields/QueryCombobox/common/Combobox/Combobox.js +208 -0
- package/dist/cjs/f/fields/QueryCombobox/common/Combobox/index.js +15 -0
- package/dist/cjs/{c/BlogCategoryButton/BlogCategoryButton.js → f/fields/QueryCombobox/common/Menu/Menu.js} +39 -31
- package/dist/cjs/f/fields/QueryCombobox/common/Menu/index.js +15 -0
- package/dist/cjs/f/fields/QueryCombobox/common/MultipleCombobox/MultipleCombobox.js +307 -0
- package/dist/cjs/f/fields/QueryCombobox/common/MultipleCombobox/index.js +15 -0
- package/dist/cjs/f/fields/QueryCombobox/common/index.js +29 -0
- package/dist/cjs/{c/AcceptCookies → f/fields/QueryCombobox}/index.js +3 -3
- package/dist/cjs/f/fields/QueryCombobox/styles.scss +90 -0
- package/dist/cjs/f/fields/QuerySelect/QuerySelect.js +201 -0
- package/dist/cjs/{c/TeamGallery → f/fields/QuerySelect}/index.js +3 -3
- package/dist/cjs/f/fields/RatingsInput/RatingsInput.js +39 -6
- package/dist/cjs/f/fields/RatingsInput/styles.scss +29 -20
- package/dist/cjs/f/fields/SelectInput/SelectInput.js +59 -14
- package/dist/cjs/f/fields/SelectInput/styles.scss +33 -13
- package/dist/cjs/f/fields/TaskRecommendationInput/TaskRecommendationInput.js +2 -2
- package/dist/cjs/f/fields/TaskRecommendationInput/styles.scss +0 -4
- package/dist/cjs/f/fields/TextInput/TextInput.js +50 -13
- package/dist/cjs/f/fields/TextInput/styles.scss +16 -7
- package/dist/cjs/f/fields/TextareaInput/TextareaInput.js +41 -15
- package/dist/cjs/f/fields/TextareaInput/styles.scss +19 -6
- package/dist/cjs/f/fields/index.js +15 -23
- package/dist/cjs/form-reset.scss +1 -1
- package/dist/cjs/index.js +26 -0
- package/dist/cjs/test/QueryLoader/QueryLoader.js +41 -0
- package/dist/cjs/test/QueryLoader/__generated__/QueryLoaderHelloQuery.graphql.js +71 -0
- package/dist/cjs/{c/BlogContext/ContextProvider.js → test/QueryLoader/common/PreloadedTestData/PreloadedTestData.js} +13 -27
- package/dist/cjs/test/QueryLoader/common/PreloadedTestData/index.js +15 -0
- package/dist/cjs/test/QueryLoader/common/index.js +13 -0
- package/dist/cjs/test/QueryLoader/index.js +15 -0
- package/dist/cjs/{c/TeamGallery/common → test}/index.js +3 -3
- package/dist/cjs/utils/hooks/index.js +23 -0
- package/dist/cjs/utils/hooks/useDynamicPosition.js +107 -0
- package/dist/cjs/utils/hooks/useWindowSize.js +39 -0
- package/dist/cjs/utils/index.js +19 -0
- package/dist/es/a/Alert/Alert.js +118 -0
- package/dist/es/{c/SiteFooter/common/Section → a/Alert}/index.js +1 -1
- package/dist/es/a/Alert/styles.scss +74 -0
- package/dist/es/{c/BlogContext → a/AppContext}/Context.js +0 -0
- package/dist/es/a/AppContext/ContextProvider.js +78 -0
- package/dist/es/a/AppContext/index.js +5 -0
- package/dist/es/{c/BlogContext/useBlog.js → a/AppContext/useApp.js} +0 -0
- package/dist/es/a/AppContext/useTheme.js +34 -0
- package/dist/es/{c/SiteFooter/SiteFooter.js → a/BackgroundGradient/BackgroundGradient.js} +14 -15
- package/dist/es/a/BackgroundGradient/index.js +2 -0
- package/dist/es/a/BackgroundGradient/styles.scss +16 -0
- package/dist/es/a/ColumnLabel/ColumnLabel.js +78 -0
- package/dist/es/a/ColumnLabel/index.js +2 -0
- package/dist/es/a/ColumnLabel/styles.scss +22 -0
- package/dist/es/a/ContentTree/ContentTree.js +67 -0
- package/dist/es/a/ContentTree/common/Tree/Tree.js +98 -0
- package/dist/es/{c/BlogPostsList/common/Card → a/ContentTree/common/Tree}/index.js +1 -1
- package/dist/es/a/ContentTree/common/index.js +3 -0
- package/dist/es/a/ContentTree/common/useContentTree.js +74 -0
- package/dist/es/a/ContentTree/common/useFirstVisibleNode.js +54 -0
- package/dist/es/a/ContentTree/index.js +2 -0
- package/dist/es/a/ContentTree/styles.scss +33 -0
- package/dist/es/a/Conversation/Conversation.js +14 -8
- package/dist/es/a/Conversation/common/Message/Message.js +32 -6
- package/dist/es/a/Conversation/styles.scss +132 -33
- package/dist/es/{c/TeamGallery/TeamGallery.js → a/Label/Label.js} +30 -23
- package/dist/es/{f/fields/TextArea → a/Label}/index.js +1 -1
- package/dist/es/a/Label/styles.scss +34 -0
- package/dist/es/a/OvalIllustration/OvalIllustration.js +111 -0
- package/dist/es/a/OvalIllustration/index.js +2 -0
- package/dist/es/a/OvalIllustration/styles.scss +102 -0
- package/dist/es/a/Popover/Popover.js +118 -0
- package/dist/es/{c/BlogPost → a/Popover}/index.js +1 -1
- package/dist/es/a/Popover/styles.scss +33 -0
- package/dist/es/a/Shapes/Shapes.js +9 -1
- package/dist/es/a/Shapes/styles.scss +42 -9
- package/dist/es/{c/BlogPostsList/BlogPostsList.js → a/SnapScroller/SnapScroller.js} +16 -11
- package/dist/es/a/SnapScroller/index.js +2 -0
- package/dist/es/a/SnapScroller/styles.scss +38 -0
- package/dist/es/a/index.js +9 -2
- package/dist/es/b/Button/Button.js +8 -2
- package/dist/es/b/Button/styles.scss +55 -10
- package/dist/es/b/Logo/Logo.js +41 -41
- package/dist/es/b/Logo/styles.scss +0 -138
- package/dist/es/b/Page/common/PageHelmet/PageHelmet.js +2 -2
- package/dist/es/b/Page/common/Section/Section.js +17 -3
- package/dist/es/b/SocialMediaButton/SocialMediaButton.js +5 -5
- package/dist/es/b/ThemeSelector/ThemeSelector.js +2 -2
- package/dist/es/c/ContentSlides/common/HorizontalMenu/HorizontalMenu.js +16 -9
- package/dist/es/c/ContentSlides/common/Navigator/Navigator.js +4 -3
- package/dist/es/c/ContentSlides/styles.scss +10 -4
- package/dist/es/c/SocialMediaShareButton/SocialMediaShareButton.js +95 -0
- package/dist/es/c/SocialMediaShareButton/index.js +2 -0
- package/dist/es/c/SocialMediaShareButton/styles.scss +39 -0
- package/dist/es/c/index.js +2 -1
- package/dist/es/f/FormInput/FormInput.js +26 -3
- package/dist/es/f/FormInput/styles.scss +11 -0
- package/dist/es/f/common/Debugger/Debugger.js +1 -1
- package/dist/es/f/common/Description/Description.js +19 -14
- package/dist/es/f/common/Label/Label.js +1 -1
- package/dist/es/f/common/Label/styles.scss +1 -1
- package/dist/es/f/fields/ChoicesInput/ChoicesInput.js +1 -1
- package/dist/es/f/fields/ChoicesInput/styles.scss +17 -2
- package/dist/es/f/fields/QueryCombobox/QueryCombobox.js +212 -0
- package/dist/es/f/fields/QueryCombobox/common/Combobox/Combobox.js +188 -0
- package/dist/es/f/fields/QueryCombobox/common/Combobox/index.js +2 -0
- package/dist/es/f/fields/QueryCombobox/common/Menu/Menu.js +77 -0
- package/dist/es/f/fields/QueryCombobox/common/Menu/index.js +2 -0
- package/dist/es/f/fields/QueryCombobox/common/MultipleCombobox/MultipleCombobox.js +279 -0
- package/dist/es/f/fields/QueryCombobox/common/MultipleCombobox/index.js +2 -0
- package/dist/es/f/fields/QueryCombobox/common/index.js +3 -0
- package/dist/es/f/fields/QueryCombobox/index.js +2 -0
- package/dist/es/f/fields/QueryCombobox/styles.scss +90 -0
- package/dist/es/f/fields/QuerySelect/QuerySelect.js +179 -0
- package/dist/es/f/fields/QuerySelect/index.js +2 -0
- package/dist/es/f/fields/RatingsInput/RatingsInput.js +38 -6
- package/dist/es/f/fields/RatingsInput/styles.scss +29 -20
- package/dist/es/f/fields/SelectInput/SelectInput.js +58 -14
- package/dist/es/f/fields/SelectInput/styles.scss +33 -13
- package/dist/es/f/fields/TaskRecommendationInput/TaskRecommendationInput.js +2 -2
- package/dist/es/f/fields/TaskRecommendationInput/styles.scss +0 -4
- package/dist/es/f/fields/TextInput/TextInput.js +50 -13
- package/dist/es/f/fields/TextInput/styles.scss +16 -7
- package/dist/es/f/fields/TextareaInput/TextareaInput.js +41 -15
- package/dist/es/f/fields/TextareaInput/styles.scss +19 -6
- package/dist/es/f/fields/index.js +3 -4
- package/dist/es/form-reset.scss +1 -1
- package/dist/es/index.js +3 -1
- package/dist/es/test/QueryLoader/QueryLoader.js +29 -0
- package/dist/es/test/QueryLoader/__generated__/QueryLoaderHelloQuery.graphql.js +71 -0
- package/dist/es/test/QueryLoader/common/PreloadedTestData/PreloadedTestData.js +31 -0
- package/dist/es/test/QueryLoader/common/PreloadedTestData/index.js +2 -0
- package/dist/es/test/QueryLoader/common/index.js +1 -0
- package/dist/es/test/QueryLoader/index.js +2 -0
- package/dist/es/test/index.js +1 -0
- package/dist/es/utils/hooks/index.js +2 -0
- package/dist/es/utils/hooks/useDynamicPosition.js +93 -0
- package/dist/es/utils/hooks/useWindowSize.js +27 -0
- package/dist/es/utils/index.js +1 -0
- package/package.json +18 -4
- package/relay.config.js +12 -0
- package/schema.graphql +4075 -0
- package/scripts/fetchSchema.js +74 -0
- package/src/__snapshots__/Storyshots.test.js.snap +12174 -7164
- package/src/local.scss +4 -2
- package/src/stories/StyleGuide/Sprites.stories.mdx +25 -0
- package/src/stories/StyleGuide/helpers.js +16 -0
- package/src/stories/a/Alert.stories.jsx +75 -0
- package/src/stories/a/{SiteContext.stories.jsx → AppContext.stories.jsx} +8 -8
- package/src/stories/a/BackgroundGradient.stories.jsx +38 -0
- package/src/stories/a/ContentTree.stories.jsx +662 -0
- package/src/stories/a/Conversation.stories.jsx +78 -1
- package/src/stories/a/DotInfo.stories.jsx +14 -13
- package/src/stories/a/Label.stories.jsx +49 -0
- package/src/stories/a/OvalIllustration.stories.jsx +59 -0
- package/src/stories/a/Popover.stories.jsx +106 -0
- package/src/stories/a/ProgressBar.stories.jsx +16 -7
- package/src/stories/a/Shapes.stories.jsx +18 -0
- package/src/stories/a/SnapScroller.stories.jsx +98 -0
- package/src/stories/a/Timestamp.stories.jsx +35 -39
- package/src/stories/b/Button.stories.jsx +27 -4
- package/src/stories/b/Logo.stories.jsx +23 -14
- package/src/stories/b/Page.stories.jsx +25 -1
- package/src/stories/b/QuestionDropdown.stories.jsx +20 -30
- package/src/stories/b/SocialMediaButton.stories.jsx +36 -53
- package/src/stories/b/ThemeSelector.stories.jsx +5 -5
- package/src/stories/b/Title.stories.jsx +13 -15
- package/src/stories/c/ContentSlides.stories.jsx +35 -151
- package/src/stories/c/Shortener.stories.jsx +9 -3
- package/src/stories/c/SocialMediaShareButton.stories.jsx +33 -0
- package/src/stories/f/ChoicesInput.stories.jsx +66 -130
- package/src/stories/f/Description.stories.jsx +22 -4
- package/src/stories/f/FormInput.stories.jsx +259 -0
- package/src/stories/f/QueryCombobox.stories.jsx +273 -0
- package/src/stories/f/QuerySelect.stories.jsx +135 -0
- package/src/stories/f/RatingsInput.stories.jsx +29 -22
- package/src/stories/f/SelectInput.stories.jsx +41 -49
- package/src/stories/f/TextInput.stories.jsx +63 -43
- package/src/stories/f/TextareaInput.stories.jsx +63 -19
- package/src/stories/f/__generated__/FormInputAllTaskStatusesQuery.graphql.js +122 -0
- package/src/stories/f/__generated__/FormInputAllTeamsQuery.graphql.js +139 -0
- package/src/stories/f/__generated__/QueryComboboxAllTeamsQuery.graphql.js +139 -0
- package/src/stories/f/__generated__/QuerySelectAllTaskStatusesQuery.graphql.js +122 -0
- package/src/stories/test/QueryLoader.stories.jsx +36 -0
- package/src/stories/utils/generateNodeId.js +12 -0
- package/src/stories/utils/lorem.js +15 -0
- package/src/stories/utils/relay/EnvironmentProvider.jsx +14 -0
- package/src/stories/utils/relay/environment.js +5 -0
- package/src/stories/utils/relay/index.js +4 -0
- package/src/stories/utils/relay/mockRelayOperation.js +14 -0
- package/src/stories/utils/relay/mockResolvers.js +299 -0
- package/src/stories/utils/testData.js +63 -0
- package/src/ui/a/Alert/Alert.jsx +144 -0
- package/src/ui/a/Alert/index.js +2 -0
- package/src/ui/a/Alert/styles.scss +74 -0
- package/src/ui/a/{SiteContext → AppContext}/Context.js +0 -0
- package/src/ui/a/{SiteContext → AppContext}/ContextProvider.jsx +8 -7
- package/src/ui/a/AppContext/index.js +5 -0
- package/src/ui/a/{SiteContext/useSite.js → AppContext/useApp.js} +0 -0
- package/src/ui/a/{SiteContext → AppContext}/useTheme.js +0 -0
- package/src/ui/a/BackgroundGradient/BackgroundGradient.jsx +76 -0
- package/src/ui/a/BackgroundGradient/index.js +2 -0
- package/src/ui/a/BackgroundGradient/styles.scss +16 -0
- package/src/ui/a/ContentTree/ContentTree.jsx +88 -0
- package/src/ui/a/ContentTree/common/Tree/Tree.jsx +138 -0
- package/src/ui/a/ContentTree/common/Tree/index.js +2 -0
- package/src/ui/a/ContentTree/common/index.js +3 -0
- package/src/ui/a/ContentTree/common/useContentTree.js +83 -0
- package/src/ui/a/ContentTree/common/useFirstVisibleNode.js +59 -0
- package/src/ui/a/ContentTree/index.js +2 -0
- package/src/ui/a/ContentTree/styles.scss +33 -0
- package/src/ui/a/Conversation/Conversation.jsx +15 -7
- package/src/ui/a/Conversation/common/Message/Message.jsx +38 -6
- package/src/ui/a/Conversation/styles.scss +132 -33
- package/src/ui/a/Label/Label.jsx +93 -0
- package/src/ui/a/Label/index.js +2 -0
- package/src/ui/a/Label/styles.scss +34 -0
- package/src/ui/a/OvalIllustration/OvalIllustration.jsx +134 -0
- package/src/ui/a/OvalIllustration/index.js +2 -0
- package/src/ui/a/OvalIllustration/styles.scss +102 -0
- package/src/ui/a/Popover/Popover.jsx +157 -0
- package/src/ui/a/Popover/index.js +2 -0
- package/src/ui/a/Popover/styles.scss +33 -0
- package/src/ui/a/Shapes/Shapes.jsx +10 -0
- package/src/ui/a/Shapes/styles.scss +42 -9
- package/src/ui/a/SnapScroller/SnapScroller.jsx +83 -0
- package/src/ui/a/SnapScroller/index.js +2 -0
- package/src/ui/a/SnapScroller/styles.scss +38 -0
- package/src/ui/a/index.js +11 -4
- package/src/ui/b/Button/Button.jsx +9 -1
- package/src/ui/b/Button/styles.scss +55 -10
- package/src/ui/b/Logo/Logo.jsx +41 -41
- package/src/ui/b/Logo/styles.scss +0 -138
- package/src/ui/b/Page/common/PageHelmet/PageHelmet.jsx +2 -2
- package/src/ui/b/Page/common/Section/Section.jsx +19 -2
- package/src/ui/b/SocialMediaButton/SocialMediaButton.jsx +4 -4
- package/src/ui/b/ThemeSelector/ThemeSelector.jsx +2 -2
- package/src/ui/c/ContentSlides/common/HorizontalMenu/HorizontalMenu.jsx +12 -5
- package/src/ui/c/ContentSlides/common/Navigator/Navigator.jsx +3 -2
- package/src/ui/c/ContentSlides/styles.scss +10 -4
- package/src/ui/c/SocialMediaShareButton/SocialMediaShareButton.jsx +121 -0
- package/src/ui/c/SocialMediaShareButton/index.js +2 -0
- package/src/ui/c/SocialMediaShareButton/styles.scss +39 -0
- package/src/ui/c/index.js +1 -0
- package/src/ui/f/FormInput/FormInput.jsx +38 -1
- package/src/ui/f/FormInput/styles.scss +11 -0
- package/src/ui/f/common/Debugger/Debugger.jsx +1 -1
- package/src/ui/f/common/Description/Description.jsx +34 -29
- package/src/ui/f/common/Label/Label.jsx +1 -1
- package/src/ui/f/common/Label/styles.scss +1 -1
- package/src/ui/f/fields/ChoicesInput/ChoicesInput.jsx +1 -1
- package/src/ui/f/fields/ChoicesInput/styles.scss +17 -2
- package/src/ui/f/fields/QueryCombobox/QueryCombobox.jsx +227 -0
- package/src/ui/f/fields/QueryCombobox/common/Combobox/Combobox.jsx +218 -0
- package/src/ui/f/fields/QueryCombobox/common/Combobox/index.js +2 -0
- package/src/ui/f/fields/QueryCombobox/common/Menu/Menu.jsx +103 -0
- package/src/ui/f/fields/QueryCombobox/common/Menu/index.js +2 -0
- package/src/ui/f/fields/QueryCombobox/common/MultipleCombobox/MultipleCombobox.jsx +314 -0
- package/src/ui/f/fields/QueryCombobox/common/MultipleCombobox/index.js +2 -0
- package/src/ui/f/fields/QueryCombobox/common/index.js +3 -0
- package/src/ui/f/fields/QueryCombobox/index.js +2 -0
- package/src/ui/f/fields/QueryCombobox/styles.scss +90 -0
- package/src/ui/f/fields/QuerySelect/QuerySelect.jsx +200 -0
- package/src/ui/f/fields/QuerySelect/index.js +2 -0
- package/src/ui/f/fields/RatingsInput/RatingsInput.jsx +54 -19
- package/src/ui/f/fields/RatingsInput/styles.scss +29 -20
- package/src/ui/f/fields/SelectInput/SelectInput.jsx +66 -8
- package/src/ui/f/fields/SelectInput/styles.scss +33 -13
- package/src/ui/f/fields/TextInput/TextInput.jsx +44 -10
- package/src/ui/f/fields/TextInput/styles.scss +16 -7
- package/src/ui/f/fields/TextareaInput/TextareaInput.jsx +42 -21
- package/src/ui/f/fields/TextareaInput/styles.scss +19 -6
- package/src/ui/f/fields/index.js +2 -3
- package/src/ui/form-reset.scss +1 -1
- package/src/ui/index.js +2 -0
- package/src/ui/test/QueryLoader/QueryLoader.jsx +41 -0
- package/src/ui/test/QueryLoader/__generated__/QueryLoaderHelloQuery.graphql.js +68 -0
- package/src/ui/test/QueryLoader/common/PreloadedTestData/PreloadedTestData.jsx +51 -0
- package/src/ui/test/QueryLoader/common/PreloadedTestData/index.js +2 -0
- package/src/ui/test/QueryLoader/common/index.js +1 -0
- package/src/ui/test/QueryLoader/index.js +2 -0
- package/src/ui/test/index.js +1 -0
- package/src/ui/utils/hooks/index.js +2 -0
- package/src/ui/utils/hooks/useDynamicPosition.js +104 -0
- package/src/ui/utils/hooks/useWindowSize.js +32 -0
- package/src/ui/utils/index.js +1 -0
- package/stylelint.config.js +13 -13
- package/dist/cjs/a/GradientBackground/index.js +0 -15
- package/dist/cjs/a/GradientBackground/styles.scss +0 -191
- package/dist/cjs/c/AcceptCookies/styles.scss +0 -49
- package/dist/cjs/c/BlogCategoryButton/index.js +0 -15
- package/dist/cjs/c/BlogContext/BlogContextProvider.js +0 -63
- package/dist/cjs/c/BlogPost/BlogPost.js +0 -147
- package/dist/cjs/c/BlogPost/styles.scss +0 -33
- package/dist/cjs/c/BlogPostsList/common/Card/Card.js +0 -170
- package/dist/cjs/c/BlogPostsList/common/index.js +0 -13
- package/dist/cjs/c/BlogPostsList/index.js +0 -15
- package/dist/cjs/c/BlogPostsList/styles.scss +0 -72
- package/dist/cjs/c/SiteFooter/common/index.js +0 -13
- package/dist/cjs/c/SiteFooter/styles.scss +0 -34
- package/dist/cjs/c/SiteHeaderCTA/index.js +0 -15
- package/dist/cjs/c/SiteHeaderCTA/styles.scss +0 -44
- package/dist/cjs/c/SiteMission/SiteMission.js +0 -113
- package/dist/cjs/c/SiteMission/styles.scss +0 -30
- package/dist/cjs/c/SiteNavigation/SiteNavigation.js +0 -130
- package/dist/cjs/c/SiteNavigation/index.js +0 -15
- package/dist/cjs/c/SiteNavigation/styles.scss +0 -118
- package/dist/cjs/c/SiteOnboardingStep/SiteOnboardingStep.js +0 -98
- package/dist/cjs/c/SiteOnboardingStep/index.js +0 -15
- package/dist/cjs/c/SiteOnboardingStep/styles.scss +0 -51
- package/dist/cjs/c/SitePricing/SitePricing.js +0 -108
- package/dist/cjs/c/SitePricing/styles.scss +0 -73
- package/dist/cjs/c/SiteServices/SiteServices.js +0 -211
- package/dist/cjs/c/SiteServices/index.js +0 -15
- package/dist/cjs/c/SiteServices/styles.scss +0 -138
- package/dist/cjs/c/TeamGallery/common/PersonCard/PersonCard.js +0 -84
- package/dist/cjs/c/TeamGallery/common/PersonCard/index.js +0 -15
- package/dist/cjs/c/TeamGallery/styles.scss +0 -100
- package/dist/cjs/c/Testimonials/Testimonials.js +0 -119
- package/dist/cjs/c/Testimonials/index.js +0 -15
- package/dist/cjs/c/Testimonials/styles.scss +0 -112
- package/dist/cjs/experimental/GradientBackground/index.js +0 -15
- package/dist/cjs/experimental/GradientBackground/styles.scss +0 -64
- package/dist/cjs/experimental/index.js +0 -13
- package/dist/cjs/f/fields/TaskRecommendation/TaskRecommendation.js +0 -129
- package/dist/cjs/f/fields/TaskRecommendation/index.js +0 -15
- package/dist/cjs/f/fields/TaskRecommendation/styles.scss +0 -37
- package/dist/cjs/f/fields/TextArea/TextArea.js +0 -141
- package/dist/cjs/f/fields/TextArea/styles.scss +0 -19
- package/dist/es/a/GradientBackground/GradientBackground.js +0 -118
- package/dist/es/a/GradientBackground/index.js +0 -2
- package/dist/es/a/GradientBackground/styles.scss +0 -191
- package/dist/es/c/AcceptCookies/AcceptCookies.js +0 -117
- package/dist/es/c/AcceptCookies/index.js +0 -2
- package/dist/es/c/AcceptCookies/styles.scss +0 -49
- package/dist/es/c/BlogCategoryButton/BlogCategoryButton.js +0 -68
- package/dist/es/c/BlogCategoryButton/index.js +0 -2
- package/dist/es/c/BlogContext/BlogContextProvider.js +0 -45
- package/dist/es/c/BlogContext/ContextProvider.js +0 -45
- package/dist/es/c/BlogContext/index.js +0 -4
- package/dist/es/c/BlogPost/BlogPost.js +0 -128
- package/dist/es/c/BlogPost/styles.scss +0 -33
- package/dist/es/c/BlogPostsList/common/Card/Card.js +0 -143
- package/dist/es/c/BlogPostsList/common/index.js +0 -1
- package/dist/es/c/BlogPostsList/index.js +0 -2
- package/dist/es/c/BlogPostsList/styles.scss +0 -72
- package/dist/es/c/SiteFooter/common/Section/Section.js +0 -73
- package/dist/es/c/SiteFooter/common/index.js +0 -1
- package/dist/es/c/SiteFooter/index.js +0 -2
- package/dist/es/c/SiteFooter/styles.scss +0 -34
- package/dist/es/c/SiteHeaderCTA/SiteHeaderCTA.js +0 -92
- package/dist/es/c/SiteHeaderCTA/index.js +0 -2
- package/dist/es/c/SiteHeaderCTA/styles.scss +0 -44
- package/dist/es/c/SiteMission/SiteMission.js +0 -96
- package/dist/es/c/SiteMission/index.js +0 -2
- package/dist/es/c/SiteMission/styles.scss +0 -30
- package/dist/es/c/SiteNavigation/SiteNavigation.js +0 -111
- package/dist/es/c/SiteNavigation/index.js +0 -2
- package/dist/es/c/SiteNavigation/styles.scss +0 -118
- package/dist/es/c/SiteOnboardingStep/SiteOnboardingStep.js +0 -81
- package/dist/es/c/SiteOnboardingStep/index.js +0 -2
- package/dist/es/c/SiteOnboardingStep/styles.scss +0 -51
- package/dist/es/c/SitePricing/SitePricing.js +0 -91
- package/dist/es/c/SitePricing/index.js +0 -2
- package/dist/es/c/SitePricing/styles.scss +0 -73
- package/dist/es/c/SiteServices/SiteServices.js +0 -195
- package/dist/es/c/SiteServices/index.js +0 -2
- package/dist/es/c/SiteServices/styles.scss +0 -138
- package/dist/es/c/TeamGallery/common/PersonCard/PersonCard.js +0 -64
- package/dist/es/c/TeamGallery/common/PersonCard/index.js +0 -2
- package/dist/es/c/TeamGallery/common/index.js +0 -1
- package/dist/es/c/TeamGallery/index.js +0 -2
- package/dist/es/c/TeamGallery/styles.scss +0 -100
- package/dist/es/c/Testimonials/Testimonials.js +0 -99
- package/dist/es/c/Testimonials/index.js +0 -2
- package/dist/es/c/Testimonials/styles.scss +0 -112
- package/dist/es/experimental/GradientBackground/GradientBackground.js +0 -76
- package/dist/es/experimental/GradientBackground/index.js +0 -2
- package/dist/es/experimental/GradientBackground/styles.scss +0 -64
- package/dist/es/experimental/index.js +0 -1
- package/dist/es/f/fields/TaskRecommendation/TaskRecommendation.js +0 -111
- package/dist/es/f/fields/TaskRecommendation/index.js +0 -2
- package/dist/es/f/fields/TaskRecommendation/styles.scss +0 -37
- package/dist/es/f/fields/TextArea/TextArea.js +0 -124
- package/dist/es/f/fields/TextArea/styles.scss +0 -19
- package/src/stories/f/CheckboxInput.stories.jsx +0 -37
- package/src/stories/f/RadioInput.stories.jsx +0 -37
- package/src/stories/f/TaskRecommendationInput.stories.jsx +0 -38
- package/src/ui/a/SiteContext/index.js +0 -5
- package/src/ui/f/fields/CheckboxInput/CheckboxInput.jsx +0 -107
- package/src/ui/f/fields/CheckboxInput/index.js +0 -2
- package/src/ui/f/fields/CheckboxInput/styles.scss +0 -28
- package/src/ui/f/fields/RadioInput/RadioInput.jsx +0 -112
- package/src/ui/f/fields/RadioInput/index.js +0 -2
- package/src/ui/f/fields/RadioInput/styles.scss +0 -26
- package/src/ui/f/fields/TaskRecommendationInput/TaskRecommendationInput.jsx +0 -130
- package/src/ui/f/fields/TaskRecommendationInput/index.js +0 -2
- package/src/ui/f/fields/TaskRecommendationInput/styles.scss +0 -41
package/schema.graphql
ADDED
|
@@ -0,0 +1,4075 @@
|
|
|
1
|
+
type Query {
|
|
2
|
+
subscription(
|
|
3
|
+
"""The ID of the object"""
|
|
4
|
+
id: ID!
|
|
5
|
+
): SubscriptionNode
|
|
6
|
+
allSubscriptions(orderBy: [String!] = null, offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, subscriptionName: String = null, flatHours: Int = null, label: String = null, hourlyRate: Float = null): SubscriptionNodeConnection
|
|
7
|
+
promoCode(
|
|
8
|
+
"""The ID of the object"""
|
|
9
|
+
id: ID!
|
|
10
|
+
): PromoCodeNode
|
|
11
|
+
allPromoCodes(orderBy: [String!] = null, offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, code: String = null, value: Int = null, label: String = null, referrerId: ID = null, referrer_FirstName_Icontains: String = null, resource: String = null, type: String = null): PromoCodeNodeConnection
|
|
12
|
+
promoCodeByCode(code: String!): PromoCodeNode
|
|
13
|
+
package(
|
|
14
|
+
"""The ID of the object"""
|
|
15
|
+
id: ID!
|
|
16
|
+
): PackageNode
|
|
17
|
+
allPackages(orderBy: [String!] = null, offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, label: String = null): PackageNodeConnection
|
|
18
|
+
discount(
|
|
19
|
+
"""The ID of the object"""
|
|
20
|
+
id: ID!
|
|
21
|
+
): DiscountNode
|
|
22
|
+
allDiscounts(orderBy: [String!] = null, offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, label: String = null, code: String = null, expiresOn: DateTime = null): DiscountNodeConnection
|
|
23
|
+
creditLog(
|
|
24
|
+
"""The ID of the object"""
|
|
25
|
+
id: ID!
|
|
26
|
+
): CreditLogNode
|
|
27
|
+
allCreditLogs(orderBy: [String!] = null, offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, contentType: ID = null, label: String = null, description: String = null, user: ID = null, team: ID = null, objectId: Int = null): CreditLogNodeConnection
|
|
28
|
+
menuItem(
|
|
29
|
+
"""The ID of the object"""
|
|
30
|
+
id: ID!
|
|
31
|
+
): MenuItemNode
|
|
32
|
+
allMenuItems(orderBy: [String!] = null, offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, description: String = null, price: Float = null, code: String = null, unit: String = null, operation: String = null): MenuItemNodeConnection
|
|
33
|
+
invoice(
|
|
34
|
+
"""The ID of the object"""
|
|
35
|
+
id: ID!
|
|
36
|
+
): InvoiceNode
|
|
37
|
+
allInvoices(orderBy: [String!] = null, offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, memo_Icontains: String = null, team: ID = null, createdAt_Gte: DateTime = null, createdAt_Gt: DateTime = null, createdAt_Lte: DateTime = null, createdAt_Lt: DateTime = null): InvoiceNodeConnection
|
|
38
|
+
taskMenuItem(
|
|
39
|
+
"""The ID of the object"""
|
|
40
|
+
id: ID!
|
|
41
|
+
): TaskMenuItemNode
|
|
42
|
+
allTaskMenuItems(orderBy: [String!] = null, offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, task: ID = null, menuItem: ID = null, unit: String = null, price: Float = null, operation: String = null): TaskMenuItemNodeConnection
|
|
43
|
+
invoiceTasks(
|
|
44
|
+
"""The ID of the object"""
|
|
45
|
+
id: ID!
|
|
46
|
+
): InvoiceTasksNode
|
|
47
|
+
allInvoiceTasks(orderBy: [String!] = null, offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, invoice: ID = null, task: ID = null, createdAt_Gte: DateTime = null, createdAt_Gt: DateTime = null, createdAt_Lte: DateTime = null, createdAt_Lt: DateTime = null): InvoiceTasksNodeConnection
|
|
48
|
+
workHours(
|
|
49
|
+
"""The ID of the object"""
|
|
50
|
+
id: ID!
|
|
51
|
+
): WorkHoursNode
|
|
52
|
+
allWorkHours(orderBy: [String!] = null, offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, task: ID = null, associate: ID = null, log: String = null, log_Icontains: String = null, task_UserTeam: ID = null, workType: String = null, workType_In: [String] = null, paidOut: Boolean = null, sentInvoice: Boolean = null, createdAt_Gte: DateTime = null, createdAt_Gt: DateTime = null, createdAt_Lte: DateTime = null, createdAt_Lt: DateTime = null): WorkHoursNodeConnection
|
|
53
|
+
workHoursByCycle(associateId: UUID = null, teamId: UUID = null, userId: UUID = null, start: DateTime!, end: DateTime!, orderBy: [String!] = null, offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, task: ID = null, associate: ID = null, log: String = null, log_Icontains: String = null, task_UserTeam: ID = null, workType: String = null, workType_In: [String] = null, paidOut: Boolean = null, sentInvoice: Boolean = null, createdAt_Gte: DateTime = null, createdAt_Gt: DateTime = null, createdAt_Lte: DateTime = null, createdAt_Lt: DateTime = null): WorkHoursNodeConnection
|
|
54
|
+
viewerCurrentWorkHour: WorkHoursNode
|
|
55
|
+
emailList(
|
|
56
|
+
"""The ID of the object"""
|
|
57
|
+
id: ID!
|
|
58
|
+
): EmailListNode
|
|
59
|
+
allEmailLists(orderBy: [String!] = null, offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, type: String = null, description: String = null): EmailListNodeConnection
|
|
60
|
+
messageTemplate(
|
|
61
|
+
"""The ID of the object"""
|
|
62
|
+
id: ID!
|
|
63
|
+
): MessageTemplateNode
|
|
64
|
+
allMessageTemplates(orderBy: [String!] = null, offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, goal: String = null, content: String = null, subject: String = null): MessageTemplateNodeConnection
|
|
65
|
+
marketingChannel(
|
|
66
|
+
"""The ID of the object"""
|
|
67
|
+
id: ID!
|
|
68
|
+
): MarketingChannelNode
|
|
69
|
+
allMarketingChannels(orderBy: [String!] = null, offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, label: String = null, value: Int = null, show: Boolean = null): MarketingChannelNodeConnection
|
|
70
|
+
contactLog(
|
|
71
|
+
"""The ID of the object"""
|
|
72
|
+
id: ID!
|
|
73
|
+
): ContactLogNode
|
|
74
|
+
allContactLogs(orderBy: [String!] = null, offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, email: String = null, dateSent: DateTime = null): ContactLogNodeConnection
|
|
75
|
+
userTestimonial(
|
|
76
|
+
"""The ID of the object"""
|
|
77
|
+
id: ID!
|
|
78
|
+
): UserTestimonialNode
|
|
79
|
+
allUserTestimonials(orderBy: [String!] = null, offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, user: ID = null, title: String = null, userFname: String = null, userLname: String = null): UserTestimonialNodeConnection
|
|
80
|
+
userLead(
|
|
81
|
+
"""The ID of the object"""
|
|
82
|
+
id: ID!
|
|
83
|
+
): UserLeadNode
|
|
84
|
+
allUserLeads(orderBy: [String!] = null, offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, email: String = null, email_Icontains: String = null, email_Istartswith: String = null, firstName: String = null, firstName_Icontains: String = null, lastName: String = null, lastName_Icontains: String = null, company: String = null, company_Icontains: String = null, startupSize: String = null): UserLeadNodeConnection
|
|
85
|
+
marketingEmailLog(
|
|
86
|
+
"""The ID of the object"""
|
|
87
|
+
id: ID!
|
|
88
|
+
): MarketingEmailLogNode
|
|
89
|
+
allMarketingEmailLogs(orderBy: [String!] = null, offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, recipient: ID = null, topic: String = null): MarketingEmailLogNodeConnection
|
|
90
|
+
taskInterest(
|
|
91
|
+
"""The ID of the object"""
|
|
92
|
+
id: ID!
|
|
93
|
+
): TaskInterestNode
|
|
94
|
+
allTaskInterests(orderBy: [String!] = null, offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, label: String = null, description: String = null, hubspotLabel: String = null): TaskInterestNodeConnection
|
|
95
|
+
taskStatus(
|
|
96
|
+
"""The ID of the object"""
|
|
97
|
+
id: ID!
|
|
98
|
+
): TaskStatusNode
|
|
99
|
+
allTaskStatuses(orderBy: [String!] = null, offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, status: String = null): TaskStatusNodeConnection
|
|
100
|
+
taskType(
|
|
101
|
+
"""The ID of the object"""
|
|
102
|
+
id: ID!
|
|
103
|
+
): TaskTypeNode
|
|
104
|
+
allTaskType(orderBy: [String!] = null, offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, type: String = null, visible: Boolean = null): TaskTypeNodeConnection
|
|
105
|
+
task(
|
|
106
|
+
"""The ID of the object"""
|
|
107
|
+
id: ID!
|
|
108
|
+
): TaskNode
|
|
109
|
+
allTasks(orderBy: [String!] = null, offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, title: String = null, title_Icontains: String = null, dueDate: DateTime = null, requestDate: DateTime = null, requester: ID = null, manager: ID = null, status: ID = null, status_In: [ID] = null, status_Status: String = null, status_Status_In: [String] = null, completedAt_Gte: DateTime = null, completedAt_Gt: DateTime = null, completedAt_Lte: DateTime = null, completedAt_Lt: DateTime = null, userTeam: ID = null, type: ID = null, associates: [ID] = null, createdAt_Gte: DateTime = null, createdAt_Gt: DateTime = null, createdAt_Lte: DateTime = null, createdAt_Lt: DateTime = null, dataSolution: String = null, billingStatus: String = null): TaskNodeConnection
|
|
110
|
+
viewerTasks(orderBy: [String!] = null, offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, title: String = null, title_Icontains: String = null, dueDate: DateTime = null, requestDate: DateTime = null, requester: ID = null, manager: ID = null, status: ID = null, status_In: [ID] = null, status_Status: String = null, status_Status_In: [String] = null, completedAt_Gte: DateTime = null, completedAt_Gt: DateTime = null, completedAt_Lte: DateTime = null, completedAt_Lt: DateTime = null, userTeam: ID = null, type: ID = null, associates: [ID] = null, createdAt_Gte: DateTime = null, createdAt_Gt: DateTime = null, createdAt_Lte: DateTime = null, createdAt_Lt: DateTime = null, dataSolution: String = null, billingStatus: String = null): TaskNodeConnection
|
|
111
|
+
recentlyCompletedTask(id: UUID!): TaskNode
|
|
112
|
+
taskExpense(
|
|
113
|
+
"""The ID of the object"""
|
|
114
|
+
id: ID!
|
|
115
|
+
): TaskExpenseNode
|
|
116
|
+
allTaskexpenses(orderBy: [String!] = null, offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, expenseItem: String = null, task: ID = null, task_UserTeam: ID = null, createdAt_Gte: DateTime = null, createdAt_Gt: DateTime = null, createdAt_Lte: DateTime = null, createdAt_Lt: DateTime = null): TaskExpenseNodeConnection
|
|
117
|
+
taskFile(
|
|
118
|
+
"""The ID of the object"""
|
|
119
|
+
id: ID!
|
|
120
|
+
): TaskFileNode
|
|
121
|
+
allTaskFiles(orderBy: [String!] = null, offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, name: String = null, fileType: String = null, task: ID = null): TaskFileNodeConnection
|
|
122
|
+
taskFeedback(
|
|
123
|
+
"""The ID of the object"""
|
|
124
|
+
id: ID!
|
|
125
|
+
): TaskFeedbackNode
|
|
126
|
+
allTaskFeedbacks(orderBy: [String!] = null, offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, giver: ID = null, receiver: ID = null, task: ID = null, createdAt_Gte: DateTime = null, createdAt_Gt: DateTime = null, createdAt_Lte: DateTime = null, createdAt_Lt: DateTime = null): TaskFeedbackNodeConnection
|
|
127
|
+
taskReview(
|
|
128
|
+
"""The ID of the object"""
|
|
129
|
+
id: ID!
|
|
130
|
+
): TaskReviewNode
|
|
131
|
+
allTaskReviews(orderBy: [String!] = null, offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, task: ID = null, createdAt_Gte: DateTime = null, createdAt_Gt: DateTime = null, createdAt_Lte: DateTime = null, createdAt_Lt: DateTime = null, nps: Int = null, satisfactionRating: Int = null): TaskReviewNodeConnection
|
|
132
|
+
userProfile(
|
|
133
|
+
"""The ID of the object"""
|
|
134
|
+
id: ID!
|
|
135
|
+
): UserProfileNode
|
|
136
|
+
allUserProfiles(orderBy: [String!] = null, offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, user: ID = null, user_FirstName: String = null, user_FirstName_Icontains: String = null, user_LastName: String = null, user_LastName_Icontains: String = null, user_Email: String = null, user_Email_Icontains: String = null, user_Groups: [ID] = null, user_Groups_In: [[ID]] = null, address: String = null, city: String = null, country: String = null, phone: String = null, timezone: String = null, contactMode: String = null, billing: Boolean = null, auth0Id: String = null, profilePicture: String = null, onEmailList: Boolean = null, salary: Int = null, setupComplete: Boolean = null, title: String = null, titleDescription: String = null, birthDate: Date = null, status: ID = null, marketingChannel: ID = null, referredBy: ID = null, createdAt_Gte: DateTime = null, createdAt_Gt: DateTime = null, createdAt_Lte: DateTime = null, createdAt_Lt: DateTime = null, leadFlag: Boolean = null, surveyComplete: Boolean = null): UserProfileNodeConnection
|
|
137
|
+
industry(
|
|
138
|
+
"""The ID of the object"""
|
|
139
|
+
id: ID!
|
|
140
|
+
): IndustryNode
|
|
141
|
+
allIndustries(orderBy: [String!] = null, offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, label: String = null, label_Icontains: String = null, label_Istartswith: String = null, value: Int = null, value_Icontains: Int = null): IndustryNodeConnection
|
|
142
|
+
stage(
|
|
143
|
+
"""The ID of the object"""
|
|
144
|
+
id: ID!
|
|
145
|
+
): StageNode
|
|
146
|
+
allStages(orderBy: [String!] = null, offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, label: String = null, description: String = null, value: Int = null): StageNodeConnection
|
|
147
|
+
team(
|
|
148
|
+
"""The ID of the object"""
|
|
149
|
+
id: ID!
|
|
150
|
+
): TeamNode
|
|
151
|
+
allTeams(orderBy: [String!] = null, offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, name: String = null, name_Icontains: String = null, slug: String = null, stage: ID = null, credits: Float = null, subscription: ID = null, subscription_Isnull: Boolean = null, partner: ID = null, partner_Isnull: Boolean = null, subscribed: Boolean = null, billingEmail: String = null, billingEmail_Isnull: Boolean = null, billingEmail_Icontains: String = null, tasks_WorkHours_CreatedAt_Gte: DateTime = null, tasks_WorkHours_CreatedAt_Gt: DateTime = null, tasks_WorkHours_CreatedAt_Lte: DateTime = null, tasks_WorkHours_CreatedAt_Lt: DateTime = null, tasks: [ID] = null, tasks_Isnull: Boolean = null, users: [ID] = null, users_Isnull: Boolean = null, users_FirstName_Icontains: String = null): TeamNodeConnection
|
|
152
|
+
userSegment(
|
|
153
|
+
"""The ID of the object"""
|
|
154
|
+
id: ID!
|
|
155
|
+
): UserSegmentNode
|
|
156
|
+
allUserSegments(orderBy: [String!] = null, offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, segment: String = null): UserSegmentNodeConnection
|
|
157
|
+
membership(
|
|
158
|
+
"""The ID of the object"""
|
|
159
|
+
id: ID!
|
|
160
|
+
): MembershipNode
|
|
161
|
+
allMemberships(orderBy: [String!] = null, offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, user: ID = null, team: ID = null, role: ID = null): MembershipNodeConnection
|
|
162
|
+
userNote(
|
|
163
|
+
"""The ID of the object"""
|
|
164
|
+
id: ID!
|
|
165
|
+
): UserNoteNode
|
|
166
|
+
allUserNotes(orderBy: [String!] = null, offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, date: Date = null, user: ID = null, notetaker: ID = null): UserNoteNodeConnection
|
|
167
|
+
status(
|
|
168
|
+
"""The ID of the object"""
|
|
169
|
+
id: ID!
|
|
170
|
+
): UserStatusNode
|
|
171
|
+
allUserStatus(orderBy: [String!] = null, offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, status: String = null): UserStatusNodeConnection
|
|
172
|
+
userFeedback(
|
|
173
|
+
"""The ID of the object"""
|
|
174
|
+
id: ID!
|
|
175
|
+
): UserFeedbackNode
|
|
176
|
+
allUserFeedback(orderBy: [String!] = null, offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, user: ID = null, survey: String = null, createdAt_Gte: DateTime = null, createdAt_Gt: DateTime = null, createdAt_Lte: DateTime = null, createdAt_Lt: DateTime = null): UserFeedbackNodeConnection
|
|
177
|
+
userFromSurvey(input: UserInput!): UserNode
|
|
178
|
+
teamBySlug(slug: String!): TeamNode
|
|
179
|
+
blogCategory(
|
|
180
|
+
"""The ID of the object"""
|
|
181
|
+
id: ID!
|
|
182
|
+
): BlogCategoryNode
|
|
183
|
+
allBlogCategories(orderBy: [String!] = null, offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, name: String = null, slug: String = null): BlogCategoryNodeConnection
|
|
184
|
+
blogPost(
|
|
185
|
+
"""The ID of the object"""
|
|
186
|
+
id: ID!
|
|
187
|
+
): BlogPostNode
|
|
188
|
+
allBlogPosts(orderBy: [String!] = null, offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, slug: String = null, slug_Icontains: String = null, slug_Istartswith: String = null, title: String = null, title_Icontains: String = null, category: ID = null): BlogPostNodeConnection
|
|
189
|
+
publicBlogPosts(orderBy: [String!] = null, offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, category_Slug: String = null): PublicBlogPostNodeConnection
|
|
190
|
+
blogPostBySlug(slug: String!): BlogPostNode
|
|
191
|
+
blogCategoryBySlug(slug: String!): BlogCategoryNode
|
|
192
|
+
oAuth2Login(resource: String!, additionalStatePayload: String = null): OAuth2LinksProvider
|
|
193
|
+
viewer: UserNode
|
|
194
|
+
user(
|
|
195
|
+
"""The ID of the object"""
|
|
196
|
+
id: ID!
|
|
197
|
+
): UserNode
|
|
198
|
+
allUsers(orderBy: [String!] = null, offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, firstName: String = null, firstName_Icontains: String = null, lastName: String = null, lastName_Icontains: String = null, email: String = null, email_Icontains: String = null, username: String = null, username_Icontains: String = null, groups_Name: String = null, groups_Name_Icontains: String = null, groups_Name_Istartswith: String = null, groups_Name_In: [String] = null, createdAt_Gte: DateTime = null, createdAt_Gt: DateTime = null, createdAt_Lte: DateTime = null, createdAt_Lt: DateTime = null): UserNodeConnection
|
|
199
|
+
group(
|
|
200
|
+
"""The ID of the object"""
|
|
201
|
+
id: ID!
|
|
202
|
+
): GroupNode
|
|
203
|
+
allGroups(orderBy: [String!] = null, offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, name: String = null): GroupNodeConnection
|
|
204
|
+
node(
|
|
205
|
+
"""The ID of the object"""
|
|
206
|
+
id: ID!
|
|
207
|
+
): Node
|
|
208
|
+
hello: String
|
|
209
|
+
authHello: String
|
|
210
|
+
|
|
211
|
+
"""The current time 2"""
|
|
212
|
+
time: DateTime
|
|
213
|
+
customMessage: String
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
type SubscriptionNode implements Node {
|
|
217
|
+
createdAt: DateTime!
|
|
218
|
+
updatedAt: DateTime!
|
|
219
|
+
createdBy: UserNode
|
|
220
|
+
updatedBy: UserNode
|
|
221
|
+
|
|
222
|
+
"""The ID of the object"""
|
|
223
|
+
id: ID!
|
|
224
|
+
subscriptionName: String!
|
|
225
|
+
flatHours: Int
|
|
226
|
+
label: String
|
|
227
|
+
|
|
228
|
+
""""""
|
|
229
|
+
hourlyRate: Decimal
|
|
230
|
+
teams(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, name: String = null, name_Icontains: String = null, slug: String = null, stage: ID = null, credits: Float = null, subscription: ID = null, subscription_Isnull: Boolean = null, partner: ID = null, partner_Isnull: Boolean = null, subscribed: Boolean = null, billingEmail: String = null, billingEmail_Isnull: Boolean = null, billingEmail_Icontains: String = null, tasks_WorkHours_CreatedAt_Gte: DateTime = null, tasks_WorkHours_CreatedAt_Gt: DateTime = null, tasks_WorkHours_CreatedAt_Lte: DateTime = null, tasks_WorkHours_CreatedAt_Lt: DateTime = null, tasks: [ID] = null, tasks_Isnull: Boolean = null, users: [ID] = null, users_Isnull: Boolean = null, users_FirstName_Icontains: String = null): TeamNodeConnection!
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
"""An object with an ID"""
|
|
234
|
+
interface Node {
|
|
235
|
+
"""The ID of the object"""
|
|
236
|
+
id: ID!
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
"""
|
|
240
|
+
The `DateTime` scalar type represents a DateTime
|
|
241
|
+
value as specified by
|
|
242
|
+
[iso8601](https://en.wikipedia.org/wiki/ISO_8601).
|
|
243
|
+
"""
|
|
244
|
+
scalar DateTime
|
|
245
|
+
|
|
246
|
+
type UserNode implements Node {
|
|
247
|
+
lastLogin: DateTime
|
|
248
|
+
|
|
249
|
+
"""
|
|
250
|
+
Designates that this user has all permissions without explicitly assigning them.
|
|
251
|
+
"""
|
|
252
|
+
isSuperuser: Boolean!
|
|
253
|
+
|
|
254
|
+
"""
|
|
255
|
+
The groups this user belongs to. A user will get all permissions granted to each of their groups.
|
|
256
|
+
"""
|
|
257
|
+
groups(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, name: String = null): GroupNodeConnection!
|
|
258
|
+
|
|
259
|
+
"""Required. 150 characters or fewer. Letters, digits and @/./+/-/_ only."""
|
|
260
|
+
username: String!
|
|
261
|
+
firstName: String!
|
|
262
|
+
lastName: String!
|
|
263
|
+
email: String!
|
|
264
|
+
|
|
265
|
+
"""Designates whether the user can log into this admin site."""
|
|
266
|
+
isStaff: Boolean!
|
|
267
|
+
|
|
268
|
+
"""
|
|
269
|
+
Designates whether this user should be treated as active. Unselect this instead of deleting accounts.
|
|
270
|
+
"""
|
|
271
|
+
isActive: Boolean!
|
|
272
|
+
dateJoined: DateTime!
|
|
273
|
+
createdAt: DateTime!
|
|
274
|
+
updatedAt: DateTime!
|
|
275
|
+
|
|
276
|
+
"""The ID of the object"""
|
|
277
|
+
id: ID!
|
|
278
|
+
blogPosts(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, category_Slug: String = null): PublicBlogPostNodeConnection!
|
|
279
|
+
userstatusCreated(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, status: String = null): UserStatusNodeConnection!
|
|
280
|
+
userstatusUpdated(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, status: String = null): UserStatusNodeConnection!
|
|
281
|
+
userProfile: UserProfileNode
|
|
282
|
+
managedUsers(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, user: ID = null, user_FirstName: String = null, user_FirstName_Icontains: String = null, user_LastName: String = null, user_LastName_Icontains: String = null, user_Email: String = null, user_Email_Icontains: String = null, user_Groups: [ID] = null, user_Groups_In: [[ID]] = null, address: String = null, city: String = null, country: String = null, phone: String = null, timezone: String = null, contactMode: String = null, billing: Boolean = null, auth0Id: String = null, profilePicture: String = null, onEmailList: Boolean = null, salary: Int = null, setupComplete: Boolean = null, title: String = null, titleDescription: String = null, birthDate: Date = null, status: ID = null, marketingChannel: ID = null, referredBy: ID = null, createdAt_Gte: DateTime = null, createdAt_Gt: DateTime = null, createdAt_Lte: DateTime = null, createdAt_Lt: DateTime = null, leadFlag: Boolean = null, surveyComplete: Boolean = null): UserProfileNodeConnection!
|
|
283
|
+
ownedContacts(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, user: ID = null, user_FirstName: String = null, user_FirstName_Icontains: String = null, user_LastName: String = null, user_LastName_Icontains: String = null, user_Email: String = null, user_Email_Icontains: String = null, user_Groups: [ID] = null, user_Groups_In: [[ID]] = null, address: String = null, city: String = null, country: String = null, phone: String = null, timezone: String = null, contactMode: String = null, billing: Boolean = null, auth0Id: String = null, profilePicture: String = null, onEmailList: Boolean = null, salary: Int = null, setupComplete: Boolean = null, title: String = null, titleDescription: String = null, birthDate: Date = null, status: ID = null, marketingChannel: ID = null, referredBy: ID = null, createdAt_Gte: DateTime = null, createdAt_Gt: DateTime = null, createdAt_Lte: DateTime = null, createdAt_Lt: DateTime = null, leadFlag: Boolean = null, surveyComplete: Boolean = null): UserProfileNodeConnection!
|
|
284
|
+
stageCreated(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, label: String = null, description: String = null, value: Int = null): StageNodeConnection!
|
|
285
|
+
stageUpdated(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, label: String = null, description: String = null, value: Int = null): StageNodeConnection!
|
|
286
|
+
teams(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, name: String = null, name_Icontains: String = null, slug: String = null, stage: ID = null, credits: Float = null, subscription: ID = null, subscription_Isnull: Boolean = null, partner: ID = null, partner_Isnull: Boolean = null, subscribed: Boolean = null, billingEmail: String = null, billingEmail_Isnull: Boolean = null, billingEmail_Icontains: String = null, tasks_WorkHours_CreatedAt_Gte: DateTime = null, tasks_WorkHours_CreatedAt_Gt: DateTime = null, tasks_WorkHours_CreatedAt_Lte: DateTime = null, tasks_WorkHours_CreatedAt_Lt: DateTime = null, tasks: [ID] = null, tasks_Isnull: Boolean = null, users: [ID] = null, users_Isnull: Boolean = null, users_FirstName_Icontains: String = null): TeamNodeConnection!
|
|
287
|
+
teamSet(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, name: String = null, name_Icontains: String = null, slug: String = null, stage: ID = null, credits: Float = null, subscription: ID = null, subscription_Isnull: Boolean = null, partner: ID = null, partner_Isnull: Boolean = null, subscribed: Boolean = null, billingEmail: String = null, billingEmail_Isnull: Boolean = null, billingEmail_Icontains: String = null, tasks_WorkHours_CreatedAt_Gte: DateTime = null, tasks_WorkHours_CreatedAt_Gt: DateTime = null, tasks_WorkHours_CreatedAt_Lte: DateTime = null, tasks_WorkHours_CreatedAt_Lt: DateTime = null, tasks: [ID] = null, tasks_Isnull: Boolean = null, users: [ID] = null, users_Isnull: Boolean = null, users_FirstName_Icontains: String = null): TeamNodeConnection!
|
|
288
|
+
teamCreated(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, name: String = null, name_Icontains: String = null, slug: String = null, stage: ID = null, credits: Float = null, subscription: ID = null, subscription_Isnull: Boolean = null, partner: ID = null, partner_Isnull: Boolean = null, subscribed: Boolean = null, billingEmail: String = null, billingEmail_Isnull: Boolean = null, billingEmail_Icontains: String = null, tasks_WorkHours_CreatedAt_Gte: DateTime = null, tasks_WorkHours_CreatedAt_Gt: DateTime = null, tasks_WorkHours_CreatedAt_Lte: DateTime = null, tasks_WorkHours_CreatedAt_Lt: DateTime = null, tasks: [ID] = null, tasks_Isnull: Boolean = null, users: [ID] = null, users_Isnull: Boolean = null, users_FirstName_Icontains: String = null): TeamNodeConnection!
|
|
289
|
+
teamUpdated(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, name: String = null, name_Icontains: String = null, slug: String = null, stage: ID = null, credits: Float = null, subscription: ID = null, subscription_Isnull: Boolean = null, partner: ID = null, partner_Isnull: Boolean = null, subscribed: Boolean = null, billingEmail: String = null, billingEmail_Isnull: Boolean = null, billingEmail_Icontains: String = null, tasks_WorkHours_CreatedAt_Gte: DateTime = null, tasks_WorkHours_CreatedAt_Gt: DateTime = null, tasks_WorkHours_CreatedAt_Lte: DateTime = null, tasks_WorkHours_CreatedAt_Lt: DateTime = null, tasks: [ID] = null, tasks_Isnull: Boolean = null, users: [ID] = null, users_Isnull: Boolean = null, users_FirstName_Icontains: String = null): TeamNodeConnection!
|
|
290
|
+
userSegments(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, segment: String = null): UserSegmentNodeConnection!
|
|
291
|
+
usersegmentCreated(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, segment: String = null): UserSegmentNodeConnection!
|
|
292
|
+
usersegmentUpdated(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, segment: String = null): UserSegmentNodeConnection!
|
|
293
|
+
memberships(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, user: ID = null, team: ID = null, role: ID = null): MembershipNodeConnection!
|
|
294
|
+
userNoteUsers(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, date: Date = null, user: ID = null, notetaker: ID = null): UserNoteNodeConnection!
|
|
295
|
+
userNoteTakers(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, date: Date = null, user: ID = null, notetaker: ID = null): UserNoteNodeConnection!
|
|
296
|
+
userFeedbacks(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, user: ID = null, survey: String = null, createdAt_Gte: DateTime = null, createdAt_Gt: DateTime = null, createdAt_Lte: DateTime = null, createdAt_Lt: DateTime = null): UserFeedbackNodeConnection!
|
|
297
|
+
userfeedbackCreated(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, user: ID = null, survey: String = null, createdAt_Gte: DateTime = null, createdAt_Gt: DateTime = null, createdAt_Lte: DateTime = null, createdAt_Lt: DateTime = null): UserFeedbackNodeConnection!
|
|
298
|
+
userfeedbackUpdated(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, user: ID = null, survey: String = null, createdAt_Gte: DateTime = null, createdAt_Gt: DateTime = null, createdAt_Lte: DateTime = null, createdAt_Lt: DateTime = null): UserFeedbackNodeConnection!
|
|
299
|
+
taskInterests(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, label: String = null, description: String = null, hubspotLabel: String = null): TaskInterestNodeConnection!
|
|
300
|
+
taskstatusCreated(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, status: String = null): TaskStatusNodeConnection!
|
|
301
|
+
taskstatusUpdated(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, status: String = null): TaskStatusNodeConnection!
|
|
302
|
+
taskTypes(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, type: String = null, visible: Boolean = null): TaskTypeNodeConnection!
|
|
303
|
+
tasktypeCreated(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, type: String = null, visible: Boolean = null): TaskTypeNodeConnection!
|
|
304
|
+
tasktypeUpdated(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, type: String = null, visible: Boolean = null): TaskTypeNodeConnection!
|
|
305
|
+
taskRequesters(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, title: String = null, title_Icontains: String = null, dueDate: DateTime = null, requestDate: DateTime = null, requester: ID = null, manager: ID = null, status: ID = null, status_In: [ID] = null, status_Status: String = null, status_Status_In: [String] = null, completedAt_Gte: DateTime = null, completedAt_Gt: DateTime = null, completedAt_Lte: DateTime = null, completedAt_Lt: DateTime = null, userTeam: ID = null, type: ID = null, associates: [ID] = null, createdAt_Gte: DateTime = null, createdAt_Gt: DateTime = null, createdAt_Lte: DateTime = null, createdAt_Lt: DateTime = null, dataSolution: String = null, billingStatus: String = null): TaskNodeConnection!
|
|
306
|
+
taskManagers(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, title: String = null, title_Icontains: String = null, dueDate: DateTime = null, requestDate: DateTime = null, requester: ID = null, manager: ID = null, status: ID = null, status_In: [ID] = null, status_Status: String = null, status_Status_In: [String] = null, completedAt_Gte: DateTime = null, completedAt_Gt: DateTime = null, completedAt_Lte: DateTime = null, completedAt_Lt: DateTime = null, userTeam: ID = null, type: ID = null, associates: [ID] = null, createdAt_Gte: DateTime = null, createdAt_Gt: DateTime = null, createdAt_Lte: DateTime = null, createdAt_Lt: DateTime = null, dataSolution: String = null, billingStatus: String = null): TaskNodeConnection!
|
|
307
|
+
tasks(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, title: String = null, title_Icontains: String = null, dueDate: DateTime = null, requestDate: DateTime = null, requester: ID = null, manager: ID = null, status: ID = null, status_In: [ID] = null, status_Status: String = null, status_Status_In: [String] = null, completedAt_Gte: DateTime = null, completedAt_Gt: DateTime = null, completedAt_Lte: DateTime = null, completedAt_Lt: DateTime = null, userTeam: ID = null, type: ID = null, associates: [ID] = null, createdAt_Gte: DateTime = null, createdAt_Gt: DateTime = null, createdAt_Lte: DateTime = null, createdAt_Lt: DateTime = null, dataSolution: String = null, billingStatus: String = null): TaskNodeConnection!
|
|
308
|
+
taskCreated(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, title: String = null, title_Icontains: String = null, dueDate: DateTime = null, requestDate: DateTime = null, requester: ID = null, manager: ID = null, status: ID = null, status_In: [ID] = null, status_Status: String = null, status_Status_In: [String] = null, completedAt_Gte: DateTime = null, completedAt_Gt: DateTime = null, completedAt_Lte: DateTime = null, completedAt_Lt: DateTime = null, userTeam: ID = null, type: ID = null, associates: [ID] = null, createdAt_Gte: DateTime = null, createdAt_Gt: DateTime = null, createdAt_Lte: DateTime = null, createdAt_Lt: DateTime = null, dataSolution: String = null, billingStatus: String = null): TaskNodeConnection!
|
|
309
|
+
taskUpdated(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, title: String = null, title_Icontains: String = null, dueDate: DateTime = null, requestDate: DateTime = null, requester: ID = null, manager: ID = null, status: ID = null, status_In: [ID] = null, status_Status: String = null, status_Status_In: [String] = null, completedAt_Gte: DateTime = null, completedAt_Gt: DateTime = null, completedAt_Lte: DateTime = null, completedAt_Lt: DateTime = null, userTeam: ID = null, type: ID = null, associates: [ID] = null, createdAt_Gte: DateTime = null, createdAt_Gt: DateTime = null, createdAt_Lte: DateTime = null, createdAt_Lt: DateTime = null, dataSolution: String = null, billingStatus: String = null): TaskNodeConnection!
|
|
310
|
+
taskexpenseCreated(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, expenseItem: String = null, task: ID = null, task_UserTeam: ID = null, createdAt_Gte: DateTime = null, createdAt_Gt: DateTime = null, createdAt_Lte: DateTime = null, createdAt_Lt: DateTime = null): TaskExpenseNodeConnection!
|
|
311
|
+
taskexpenseUpdated(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, expenseItem: String = null, task: ID = null, task_UserTeam: ID = null, createdAt_Gte: DateTime = null, createdAt_Gt: DateTime = null, createdAt_Lte: DateTime = null, createdAt_Lt: DateTime = null): TaskExpenseNodeConnection!
|
|
312
|
+
taskfileCreated(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, name: String = null, fileType: String = null, task: ID = null): TaskFileNodeConnection!
|
|
313
|
+
taskfileUpdated(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, name: String = null, fileType: String = null, task: ID = null): TaskFileNodeConnection!
|
|
314
|
+
feedbackGivers(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, giver: ID = null, receiver: ID = null, task: ID = null, createdAt_Gte: DateTime = null, createdAt_Gt: DateTime = null, createdAt_Lte: DateTime = null, createdAt_Lt: DateTime = null): TaskFeedbackNodeConnection!
|
|
315
|
+
feedbackReceivers(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, giver: ID = null, receiver: ID = null, task: ID = null, createdAt_Gte: DateTime = null, createdAt_Gt: DateTime = null, createdAt_Lte: DateTime = null, createdAt_Lt: DateTime = null): TaskFeedbackNodeConnection!
|
|
316
|
+
taskfeedbackCreated(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, giver: ID = null, receiver: ID = null, task: ID = null, createdAt_Gte: DateTime = null, createdAt_Gt: DateTime = null, createdAt_Lte: DateTime = null, createdAt_Lt: DateTime = null): TaskFeedbackNodeConnection!
|
|
317
|
+
taskfeedbackUpdated(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, giver: ID = null, receiver: ID = null, task: ID = null, createdAt_Gte: DateTime = null, createdAt_Gt: DateTime = null, createdAt_Lte: DateTime = null, createdAt_Lt: DateTime = null): TaskFeedbackNodeConnection!
|
|
318
|
+
emailLists(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, type: String = null, description: String = null): EmailListNodeConnection!
|
|
319
|
+
emaillistCreated(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, type: String = null, description: String = null): EmailListNodeConnection!
|
|
320
|
+
emaillistUpdated(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, type: String = null, description: String = null): EmailListNodeConnection!
|
|
321
|
+
messagetemplateCreated(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, goal: String = null, content: String = null, subject: String = null): MessageTemplateNodeConnection!
|
|
322
|
+
messagetemplateUpdated(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, goal: String = null, content: String = null, subject: String = null): MessageTemplateNodeConnection!
|
|
323
|
+
marketingchannelCreated(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, label: String = null, value: Int = null, show: Boolean = null): MarketingChannelNodeConnection!
|
|
324
|
+
marketingchannelUpdated(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, label: String = null, value: Int = null, show: Boolean = null): MarketingChannelNodeConnection!
|
|
325
|
+
contactLogPartners(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, email: String = null, dateSent: DateTime = null): ContactLogNodeConnection!
|
|
326
|
+
contactLogClients(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, email: String = null, dateSent: DateTime = null): ContactLogNodeConnection!
|
|
327
|
+
contactlogCreated(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, email: String = null, dateSent: DateTime = null): ContactLogNodeConnection!
|
|
328
|
+
contactlogUpdated(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, email: String = null, dateSent: DateTime = null): ContactLogNodeConnection!
|
|
329
|
+
userTestimonials(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, user: ID = null, title: String = null, userFname: String = null, userLname: String = null): UserTestimonialNodeConnection!
|
|
330
|
+
usertestimonialCreated(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, user: ID = null, title: String = null, userFname: String = null, userLname: String = null): UserTestimonialNodeConnection!
|
|
331
|
+
usertestimonialUpdated(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, user: ID = null, title: String = null, userFname: String = null, userLname: String = null): UserTestimonialNodeConnection!
|
|
332
|
+
lead: UserLeadNode
|
|
333
|
+
userleadCreated(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, email: String = null, email_Icontains: String = null, email_Istartswith: String = null, firstName: String = null, firstName_Icontains: String = null, lastName: String = null, lastName_Icontains: String = null, company: String = null, company_Icontains: String = null, startupSize: String = null): UserLeadNodeConnection!
|
|
334
|
+
userleadUpdated(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, email: String = null, email_Icontains: String = null, email_Istartswith: String = null, firstName: String = null, firstName_Icontains: String = null, lastName: String = null, lastName_Icontains: String = null, company: String = null, company_Icontains: String = null, startupSize: String = null): UserLeadNodeConnection!
|
|
335
|
+
user(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, recipient: ID = null, topic: String = null): MarketingEmailLogNodeConnection!
|
|
336
|
+
subscriptionCreated(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, subscriptionName: String = null, flatHours: Int = null, label: String = null, hourlyRate: Float = null): SubscriptionNodeConnection!
|
|
337
|
+
subscriptionUpdated(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, subscriptionName: String = null, flatHours: Int = null, label: String = null, hourlyRate: Float = null): SubscriptionNodeConnection!
|
|
338
|
+
referralCodes(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, code: String = null, value: Int = null, label: String = null, referrerId: ID = null, referrer_FirstName_Icontains: String = null, resource: String = null, type: String = null): PromoCodeNodeConnection!
|
|
339
|
+
promocodeCreated(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, code: String = null, value: Int = null, label: String = null, referrerId: ID = null, referrer_FirstName_Icontains: String = null, resource: String = null, type: String = null): PromoCodeNodeConnection!
|
|
340
|
+
promocodeUpdated(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, code: String = null, value: Int = null, label: String = null, referrerId: ID = null, referrer_FirstName_Icontains: String = null, resource: String = null, type: String = null): PromoCodeNodeConnection!
|
|
341
|
+
packageCreated(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, label: String = null): PackageNodeConnection!
|
|
342
|
+
packageUpdated(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, label: String = null): PackageNodeConnection!
|
|
343
|
+
discountCreated(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, label: String = null, code: String = null, expiresOn: DateTime = null): DiscountNodeConnection!
|
|
344
|
+
discountUpdated(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, label: String = null, code: String = null, expiresOn: DateTime = null): DiscountNodeConnection!
|
|
345
|
+
workHours(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, task: ID = null, associate: ID = null, log: String = null, log_Icontains: String = null, task_UserTeam: ID = null, workType: String = null, workType_In: [String] = null, paidOut: Boolean = null, sentInvoice: Boolean = null, createdAt_Gte: DateTime = null, createdAt_Gt: DateTime = null, createdAt_Lte: DateTime = null, createdAt_Lt: DateTime = null): WorkHoursNodeConnection!
|
|
346
|
+
workhoursCreated(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, task: ID = null, associate: ID = null, log: String = null, log_Icontains: String = null, task_UserTeam: ID = null, workType: String = null, workType_In: [String] = null, paidOut: Boolean = null, sentInvoice: Boolean = null, createdAt_Gte: DateTime = null, createdAt_Gt: DateTime = null, createdAt_Lte: DateTime = null, createdAt_Lt: DateTime = null): WorkHoursNodeConnection!
|
|
347
|
+
workhoursUpdated(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, task: ID = null, associate: ID = null, log: String = null, log_Icontains: String = null, task_UserTeam: ID = null, workType: String = null, workType_In: [String] = null, paidOut: Boolean = null, sentInvoice: Boolean = null, createdAt_Gte: DateTime = null, createdAt_Gt: DateTime = null, createdAt_Lte: DateTime = null, createdAt_Lt: DateTime = null): WorkHoursNodeConnection!
|
|
348
|
+
creditLogs(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, contentType: ID = null, label: String = null, description: String = null, user: ID = null, team: ID = null, objectId: Int = null): CreditLogNodeConnection!
|
|
349
|
+
creditlogCreated(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, contentType: ID = null, label: String = null, description: String = null, user: ID = null, team: ID = null, objectId: Int = null): CreditLogNodeConnection!
|
|
350
|
+
creditlogUpdated(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, contentType: ID = null, label: String = null, description: String = null, user: ID = null, team: ID = null, objectId: Int = null): CreditLogNodeConnection!
|
|
351
|
+
menuitemCreated(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, description: String = null, price: Float = null, code: String = null, unit: String = null, operation: String = null): MenuItemNodeConnection!
|
|
352
|
+
menuitemUpdated(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, description: String = null, price: Float = null, code: String = null, unit: String = null, operation: String = null): MenuItemNodeConnection!
|
|
353
|
+
taskmenuitemCreated(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, task: ID = null, menuItem: ID = null, unit: String = null, price: Float = null, operation: String = null): TaskMenuItemNodeConnection!
|
|
354
|
+
taskmenuitemUpdated(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, task: ID = null, menuItem: ID = null, unit: String = null, price: Float = null, operation: String = null): TaskMenuItemNodeConnection!
|
|
355
|
+
invoiceCreated(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, memo_Icontains: String = null, team: ID = null, createdAt_Gte: DateTime = null, createdAt_Gt: DateTime = null, createdAt_Lte: DateTime = null, createdAt_Lt: DateTime = null): InvoiceNodeConnection!
|
|
356
|
+
invoiceUpdated(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, memo_Icontains: String = null, team: ID = null, createdAt_Gte: DateTime = null, createdAt_Gt: DateTime = null, createdAt_Lte: DateTime = null, createdAt_Lt: DateTime = null): InvoiceNodeConnection!
|
|
357
|
+
invoicetasksCreated(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, invoice: ID = null, task: ID = null, createdAt_Gte: DateTime = null, createdAt_Gt: DateTime = null, createdAt_Lte: DateTime = null, createdAt_Lt: DateTime = null): InvoiceTasksNodeConnection!
|
|
358
|
+
invoicetasksUpdated(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, invoice: ID = null, task: ID = null, createdAt_Gte: DateTime = null, createdAt_Gt: DateTime = null, createdAt_Lte: DateTime = null, createdAt_Lt: DateTime = null): InvoiceTasksNodeConnection!
|
|
359
|
+
}
|
|
360
|
+
|
|
361
|
+
type GroupNodeConnection {
|
|
362
|
+
"""Pagination data for this connection."""
|
|
363
|
+
pageInfo: PageInfo!
|
|
364
|
+
|
|
365
|
+
"""Contains the nodes in this connection."""
|
|
366
|
+
edges: [GroupNodeEdge]!
|
|
367
|
+
}
|
|
368
|
+
|
|
369
|
+
"""
|
|
370
|
+
The Relay compliant `PageInfo` type, containing data necessary to paginate this connection.
|
|
371
|
+
"""
|
|
372
|
+
type PageInfo {
|
|
373
|
+
"""When paginating forwards, are there more items?"""
|
|
374
|
+
hasNextPage: Boolean!
|
|
375
|
+
|
|
376
|
+
"""When paginating backwards, are there more items?"""
|
|
377
|
+
hasPreviousPage: Boolean!
|
|
378
|
+
|
|
379
|
+
"""When paginating backwards, the cursor to continue."""
|
|
380
|
+
startCursor: String
|
|
381
|
+
|
|
382
|
+
"""When paginating forwards, the cursor to continue."""
|
|
383
|
+
endCursor: String
|
|
384
|
+
}
|
|
385
|
+
|
|
386
|
+
"""A Relay edge containing a `GroupNode` and its cursor."""
|
|
387
|
+
type GroupNodeEdge {
|
|
388
|
+
"""The item at the end of the edge"""
|
|
389
|
+
node: GroupNode
|
|
390
|
+
|
|
391
|
+
"""A cursor for use in pagination"""
|
|
392
|
+
cursor: String!
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
type GroupNode implements Node {
|
|
396
|
+
"""The ID of the object"""
|
|
397
|
+
id: ID!
|
|
398
|
+
name: String!
|
|
399
|
+
|
|
400
|
+
"""
|
|
401
|
+
The groups this user belongs to. A user will get all permissions granted to each of their groups.
|
|
402
|
+
"""
|
|
403
|
+
userSet(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, firstName: String = null, lastName: String = null, email: String = null, username: String = null, groups_Name: String = null): UserNodeConnection!
|
|
404
|
+
memberships(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, user: ID = null, team: ID = null, role: ID = null): MembershipNodeConnection!
|
|
405
|
+
}
|
|
406
|
+
|
|
407
|
+
type UserNodeConnection {
|
|
408
|
+
"""Pagination data for this connection."""
|
|
409
|
+
pageInfo: PageInfo!
|
|
410
|
+
|
|
411
|
+
"""Contains the nodes in this connection."""
|
|
412
|
+
edges: [UserNodeEdge]!
|
|
413
|
+
}
|
|
414
|
+
|
|
415
|
+
"""A Relay edge containing a `UserNode` and its cursor."""
|
|
416
|
+
type UserNodeEdge {
|
|
417
|
+
"""The item at the end of the edge"""
|
|
418
|
+
node: UserNode
|
|
419
|
+
|
|
420
|
+
"""A cursor for use in pagination"""
|
|
421
|
+
cursor: String!
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
type MembershipNodeConnection {
|
|
425
|
+
"""Pagination data for this connection."""
|
|
426
|
+
pageInfo: PageInfo!
|
|
427
|
+
|
|
428
|
+
"""Contains the nodes in this connection."""
|
|
429
|
+
edges: [MembershipNodeEdge]!
|
|
430
|
+
}
|
|
431
|
+
|
|
432
|
+
"""A Relay edge containing a `MembershipNode` and its cursor."""
|
|
433
|
+
type MembershipNodeEdge {
|
|
434
|
+
"""The item at the end of the edge"""
|
|
435
|
+
node: MembershipNode
|
|
436
|
+
|
|
437
|
+
"""A cursor for use in pagination"""
|
|
438
|
+
cursor: String!
|
|
439
|
+
}
|
|
440
|
+
|
|
441
|
+
type MembershipNode implements Node {
|
|
442
|
+
createdAt: DateTime!
|
|
443
|
+
updatedAt: DateTime!
|
|
444
|
+
|
|
445
|
+
"""The ID of the object"""
|
|
446
|
+
id: ID!
|
|
447
|
+
user: UserNode
|
|
448
|
+
team: TeamNode
|
|
449
|
+
role: GroupNode
|
|
450
|
+
}
|
|
451
|
+
|
|
452
|
+
type TeamNode implements Node {
|
|
453
|
+
createdAt: DateTime!
|
|
454
|
+
updatedAt: DateTime!
|
|
455
|
+
createdBy: UserNode
|
|
456
|
+
updatedBy: UserNode
|
|
457
|
+
|
|
458
|
+
"""The ID of the object"""
|
|
459
|
+
id: ID!
|
|
460
|
+
name: String!
|
|
461
|
+
website: String
|
|
462
|
+
description: String
|
|
463
|
+
slug: String
|
|
464
|
+
stage: StageNode
|
|
465
|
+
|
|
466
|
+
""""""
|
|
467
|
+
credits: Decimal
|
|
468
|
+
subscription: SubscriptionNode
|
|
469
|
+
partner: UserNode
|
|
470
|
+
subscribed: Boolean!
|
|
471
|
+
billingEmail: String
|
|
472
|
+
|
|
473
|
+
""""""
|
|
474
|
+
hourlyRate: Decimal
|
|
475
|
+
industries(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, label: String = null, label_Icontains: String = null, label_Istartswith: String = null, value: Int = null, value_Icontains: Int = null): IndustryNodeConnection!
|
|
476
|
+
users(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, firstName: String = null, lastName: String = null, email: String = null, username: String = null, groups_Name: String = null): UserNodeConnection!
|
|
477
|
+
tasksIndex: Int!
|
|
478
|
+
lastTaskRequestedAt: DateTime
|
|
479
|
+
memberships(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, user: ID = null, team: ID = null, role: ID = null): MembershipNodeConnection!
|
|
480
|
+
tasks(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, title: String = null, title_Icontains: String = null, dueDate: DateTime = null, requestDate: DateTime = null, requester: ID = null, manager: ID = null, status: ID = null, status_In: [ID] = null, status_Status: String = null, status_Status_In: [String] = null, completedAt_Gte: DateTime = null, completedAt_Gt: DateTime = null, completedAt_Lte: DateTime = null, completedAt_Lt: DateTime = null, userTeam: ID = null, type: ID = null, associates: [ID] = null, createdAt_Gte: DateTime = null, createdAt_Gt: DateTime = null, createdAt_Lte: DateTime = null, createdAt_Lt: DateTime = null, dataSolution: String = null, billingStatus: String = null): TaskNodeConnection!
|
|
481
|
+
userTestimonials(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, user: ID = null, title: String = null, userFname: String = null, userLname: String = null): UserTestimonialNodeConnection!
|
|
482
|
+
workHours(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, task: ID = null, associate: ID = null, log: String = null, log_Icontains: String = null, task_UserTeam: ID = null, workType: String = null, workType_In: [String] = null, paidOut: Boolean = null, sentInvoice: Boolean = null, createdAt_Gte: DateTime = null, createdAt_Gt: DateTime = null, createdAt_Lte: DateTime = null, createdAt_Lt: DateTime = null): WorkHoursNodeConnection!
|
|
483
|
+
creditLogs(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, contentType: ID = null, label: String = null, description: String = null, user: ID = null, team: ID = null, objectId: Int = null): CreditLogNodeConnection!
|
|
484
|
+
invoices(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, memo_Icontains: String = null, team: ID = null, createdAt_Gte: DateTime = null, createdAt_Gt: DateTime = null, createdAt_Lte: DateTime = null, createdAt_Lt: DateTime = null): InvoiceNodeConnection!
|
|
485
|
+
}
|
|
486
|
+
|
|
487
|
+
type StageNode implements Node {
|
|
488
|
+
createdAt: DateTime!
|
|
489
|
+
updatedAt: DateTime!
|
|
490
|
+
createdBy: UserNode
|
|
491
|
+
updatedBy: UserNode
|
|
492
|
+
|
|
493
|
+
"""The ID of the object"""
|
|
494
|
+
id: ID!
|
|
495
|
+
label: String
|
|
496
|
+
description: String
|
|
497
|
+
value: Int!
|
|
498
|
+
teams(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, name: String = null, name_Icontains: String = null, slug: String = null, stage: ID = null, credits: Float = null, subscription: ID = null, subscription_Isnull: Boolean = null, partner: ID = null, partner_Isnull: Boolean = null, subscribed: Boolean = null, billingEmail: String = null, billingEmail_Isnull: Boolean = null, billingEmail_Icontains: String = null, tasks_WorkHours_CreatedAt_Gte: DateTime = null, tasks_WorkHours_CreatedAt_Gt: DateTime = null, tasks_WorkHours_CreatedAt_Lte: DateTime = null, tasks_WorkHours_CreatedAt_Lt: DateTime = null, tasks: [ID] = null, tasks_Isnull: Boolean = null, users: [ID] = null, users_Isnull: Boolean = null, users_FirstName_Icontains: String = null): TeamNodeConnection!
|
|
499
|
+
}
|
|
500
|
+
|
|
501
|
+
type TeamNodeConnection {
|
|
502
|
+
"""Pagination data for this connection."""
|
|
503
|
+
pageInfo: PageInfo!
|
|
504
|
+
|
|
505
|
+
"""Contains the nodes in this connection."""
|
|
506
|
+
edges: [TeamNodeEdge]!
|
|
507
|
+
}
|
|
508
|
+
|
|
509
|
+
"""A Relay edge containing a `TeamNode` and its cursor."""
|
|
510
|
+
type TeamNodeEdge {
|
|
511
|
+
"""The item at the end of the edge"""
|
|
512
|
+
node: TeamNode
|
|
513
|
+
|
|
514
|
+
"""A cursor for use in pagination"""
|
|
515
|
+
cursor: String!
|
|
516
|
+
}
|
|
517
|
+
|
|
518
|
+
"""The `Decimal` scalar type represents a python Decimal."""
|
|
519
|
+
scalar Decimal
|
|
520
|
+
|
|
521
|
+
type IndustryNodeConnection {
|
|
522
|
+
"""Pagination data for this connection."""
|
|
523
|
+
pageInfo: PageInfo!
|
|
524
|
+
|
|
525
|
+
"""Contains the nodes in this connection."""
|
|
526
|
+
edges: [IndustryNodeEdge]!
|
|
527
|
+
}
|
|
528
|
+
|
|
529
|
+
"""A Relay edge containing a `IndustryNode` and its cursor."""
|
|
530
|
+
type IndustryNodeEdge {
|
|
531
|
+
"""The item at the end of the edge"""
|
|
532
|
+
node: IndustryNode
|
|
533
|
+
|
|
534
|
+
"""A cursor for use in pagination"""
|
|
535
|
+
cursor: String!
|
|
536
|
+
}
|
|
537
|
+
|
|
538
|
+
type IndustryNode implements Node {
|
|
539
|
+
createdAt: DateTime!
|
|
540
|
+
updatedAt: DateTime!
|
|
541
|
+
|
|
542
|
+
"""The ID of the object"""
|
|
543
|
+
id: ID!
|
|
544
|
+
label: String!
|
|
545
|
+
value: Int!
|
|
546
|
+
teams(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, name: String = null, name_Icontains: String = null, slug: String = null, stage: ID = null, credits: Float = null, subscription: ID = null, subscription_Isnull: Boolean = null, partner: ID = null, partner_Isnull: Boolean = null, subscribed: Boolean = null, billingEmail: String = null, billingEmail_Isnull: Boolean = null, billingEmail_Icontains: String = null, tasks_WorkHours_CreatedAt_Gte: DateTime = null, tasks_WorkHours_CreatedAt_Gt: DateTime = null, tasks_WorkHours_CreatedAt_Lte: DateTime = null, tasks_WorkHours_CreatedAt_Lt: DateTime = null, tasks: [ID] = null, tasks_Isnull: Boolean = null, users: [ID] = null, users_Isnull: Boolean = null, users_FirstName_Icontains: String = null): TeamNodeConnection!
|
|
547
|
+
}
|
|
548
|
+
|
|
549
|
+
type TaskNodeConnection {
|
|
550
|
+
"""Pagination data for this connection."""
|
|
551
|
+
pageInfo: PageInfo!
|
|
552
|
+
|
|
553
|
+
"""Contains the nodes in this connection."""
|
|
554
|
+
edges: [TaskNodeEdge]!
|
|
555
|
+
}
|
|
556
|
+
|
|
557
|
+
"""A Relay edge containing a `TaskNode` and its cursor."""
|
|
558
|
+
type TaskNodeEdge {
|
|
559
|
+
"""The item at the end of the edge"""
|
|
560
|
+
node: TaskNode
|
|
561
|
+
|
|
562
|
+
"""A cursor for use in pagination"""
|
|
563
|
+
cursor: String!
|
|
564
|
+
}
|
|
565
|
+
|
|
566
|
+
type TaskNode implements Node {
|
|
567
|
+
createdAt: DateTime!
|
|
568
|
+
updatedAt: DateTime!
|
|
569
|
+
createdBy: UserNode
|
|
570
|
+
updatedBy: UserNode
|
|
571
|
+
|
|
572
|
+
"""The ID of the object"""
|
|
573
|
+
id: ID!
|
|
574
|
+
description: String
|
|
575
|
+
dueDate: DateTime!
|
|
576
|
+
links: String
|
|
577
|
+
repeat: Boolean!
|
|
578
|
+
repeatDetails: JSONString!
|
|
579
|
+
requester: UserNode
|
|
580
|
+
userTeam: TeamNode
|
|
581
|
+
manager: UserNode
|
|
582
|
+
type: TaskTypeNode
|
|
583
|
+
status: TaskStatusNode
|
|
584
|
+
associates(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, firstName: String = null, lastName: String = null, email: String = null, username: String = null, groups_Name: String = null): UserNodeConnection!
|
|
585
|
+
|
|
586
|
+
""""""
|
|
587
|
+
version: Decimal!
|
|
588
|
+
completedAt: DateTime
|
|
589
|
+
title: String!
|
|
590
|
+
|
|
591
|
+
""""""
|
|
592
|
+
timecap: Decimal!
|
|
593
|
+
requestDate: DateTime!
|
|
594
|
+
completionDate: DateTime
|
|
595
|
+
urgent: Boolean!
|
|
596
|
+
evening: Boolean!
|
|
597
|
+
weekend: Boolean!
|
|
598
|
+
isPublic: Boolean!
|
|
599
|
+
query: String
|
|
600
|
+
|
|
601
|
+
""""""
|
|
602
|
+
userTeamIndex: Decimal!
|
|
603
|
+
dataSpreadsheet: String
|
|
604
|
+
dataCategory: String
|
|
605
|
+
dataCategoryNotes: String
|
|
606
|
+
dataSolution: TasksTaskDataSolutionChoices
|
|
607
|
+
dataTargetSources: JSONString!
|
|
608
|
+
dataTargetFilters: JSONString!
|
|
609
|
+
dataTargetColumns: JSONString!
|
|
610
|
+
dataTargetQuantity: Int!
|
|
611
|
+
subTasks(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, title: String = null, title_Icontains: String = null, dueDate: DateTime = null, requestDate: DateTime = null, requester: ID = null, manager: ID = null, status: ID = null, status_In: [ID] = null, status_Status: String = null, status_Status_In: [String] = null, completedAt_Gte: DateTime = null, completedAt_Gt: DateTime = null, completedAt_Lte: DateTime = null, completedAt_Lt: DateTime = null, userTeam: ID = null, type: ID = null, associates: [ID] = null, createdAt_Gte: DateTime = null, createdAt_Gt: DateTime = null, createdAt_Lte: DateTime = null, createdAt_Lt: DateTime = null, dataSolution: String = null, billingStatus: String = null): TaskNodeConnection!
|
|
612
|
+
qaProcess: String
|
|
613
|
+
qaSampleSize: Int!
|
|
614
|
+
|
|
615
|
+
""""""
|
|
616
|
+
qaTargetPercentage: Decimal!
|
|
617
|
+
deliveryInstructions: String
|
|
618
|
+
deliveryTargetChannels: JSONString!
|
|
619
|
+
billingStatus: TasksTaskBillingStatusChoices
|
|
620
|
+
menuItems(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, description: String = null, price: Float = null, code: String = null, unit: String = null, operation: String = null): MenuItemNodeConnection!
|
|
621
|
+
indexByTeam: Int!
|
|
622
|
+
indexByRequester: Int!
|
|
623
|
+
otherSubTasks(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, title: String = null, title_Icontains: String = null, dueDate: DateTime = null, requestDate: DateTime = null, requester: ID = null, manager: ID = null, status: ID = null, status_In: [ID] = null, status_Status: String = null, status_Status_In: [String] = null, completedAt_Gte: DateTime = null, completedAt_Gt: DateTime = null, completedAt_Lte: DateTime = null, completedAt_Lt: DateTime = null, userTeam: ID = null, type: ID = null, associates: [ID] = null, createdAt_Gte: DateTime = null, createdAt_Gt: DateTime = null, createdAt_Lte: DateTime = null, createdAt_Lt: DateTime = null, dataSolution: String = null, billingStatus: String = null): TaskNodeConnection!
|
|
624
|
+
taskExpenses(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, expenseItem: String = null, task: ID = null, task_UserTeam: ID = null, createdAt_Gte: DateTime = null, createdAt_Gt: DateTime = null, createdAt_Lte: DateTime = null, createdAt_Lt: DateTime = null): TaskExpenseNodeConnection!
|
|
625
|
+
taskFiles(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, name: String = null, fileType: String = null, task: ID = null): TaskFileNodeConnection!
|
|
626
|
+
feedbacks(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, giver: ID = null, receiver: ID = null, task: ID = null, createdAt_Gte: DateTime = null, createdAt_Gt: DateTime = null, createdAt_Lte: DateTime = null, createdAt_Lt: DateTime = null): TaskFeedbackNodeConnection!
|
|
627
|
+
review: TaskReviewNode
|
|
628
|
+
workHours(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, task: ID = null, associate: ID = null, log: String = null, log_Icontains: String = null, task_UserTeam: ID = null, workType: String = null, workType_In: [String] = null, paidOut: Boolean = null, sentInvoice: Boolean = null, createdAt_Gte: DateTime = null, createdAt_Gt: DateTime = null, createdAt_Lte: DateTime = null, createdAt_Lt: DateTime = null): WorkHoursNodeConnection!
|
|
629
|
+
task(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, task: ID = null, menuItem: ID = null, unit: String = null, price: Float = null, operation: String = null): TaskMenuItemNodeConnection!
|
|
630
|
+
invoiceSet(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, memo_Icontains: String = null, team: ID = null, createdAt_Gte: DateTime = null, createdAt_Gt: DateTime = null, createdAt_Lte: DateTime = null, createdAt_Lt: DateTime = null): InvoiceNodeConnection!
|
|
631
|
+
invoiceTaskItem(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, invoice: ID = null, task: ID = null, createdAt_Gte: DateTime = null, createdAt_Gt: DateTime = null, createdAt_Lte: DateTime = null, createdAt_Lt: DateTime = null): InvoiceTasksNodeConnection!
|
|
632
|
+
}
|
|
633
|
+
|
|
634
|
+
"""
|
|
635
|
+
Allows use of a JSON String for input / output from the GraphQL schema.
|
|
636
|
+
|
|
637
|
+
Use of this type is *not recommended* as you lose the benefits of having a defined, static
|
|
638
|
+
schema (one of the key benefits of GraphQL).
|
|
639
|
+
"""
|
|
640
|
+
scalar JSONString
|
|
641
|
+
|
|
642
|
+
type TaskTypeNode implements Node {
|
|
643
|
+
createdAt: DateTime!
|
|
644
|
+
updatedAt: DateTime!
|
|
645
|
+
createdBy: UserNode
|
|
646
|
+
updatedBy: UserNode
|
|
647
|
+
|
|
648
|
+
"""The ID of the object"""
|
|
649
|
+
id: ID!
|
|
650
|
+
type: String!
|
|
651
|
+
description: String!
|
|
652
|
+
documentation: String
|
|
653
|
+
labelColor: String!
|
|
654
|
+
users(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, firstName: String = null, lastName: String = null, email: String = null, username: String = null, groups_Name: String = null): UserNodeConnection!
|
|
655
|
+
visible: Boolean!
|
|
656
|
+
tasks(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, title: String = null, title_Icontains: String = null, dueDate: DateTime = null, requestDate: DateTime = null, requester: ID = null, manager: ID = null, status: ID = null, status_In: [ID] = null, status_Status: String = null, status_Status_In: [String] = null, completedAt_Gte: DateTime = null, completedAt_Gt: DateTime = null, completedAt_Lte: DateTime = null, completedAt_Lt: DateTime = null, userTeam: ID = null, type: ID = null, associates: [ID] = null, createdAt_Gte: DateTime = null, createdAt_Gt: DateTime = null, createdAt_Lte: DateTime = null, createdAt_Lt: DateTime = null, dataSolution: String = null, billingStatus: String = null): TaskNodeConnection!
|
|
657
|
+
leadInterests(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, email: String = null, email_Icontains: String = null, email_Istartswith: String = null, firstName: String = null, firstName_Icontains: String = null, lastName: String = null, lastName_Icontains: String = null, company: String = null, company_Icontains: String = null, startupSize: String = null): UserLeadNodeConnection!
|
|
658
|
+
}
|
|
659
|
+
|
|
660
|
+
type UserLeadNodeConnection {
|
|
661
|
+
"""Pagination data for this connection."""
|
|
662
|
+
pageInfo: PageInfo!
|
|
663
|
+
|
|
664
|
+
"""Contains the nodes in this connection."""
|
|
665
|
+
edges: [UserLeadNodeEdge]!
|
|
666
|
+
}
|
|
667
|
+
|
|
668
|
+
"""A Relay edge containing a `UserLeadNode` and its cursor."""
|
|
669
|
+
type UserLeadNodeEdge {
|
|
670
|
+
"""The item at the end of the edge"""
|
|
671
|
+
node: UserLeadNode
|
|
672
|
+
|
|
673
|
+
"""A cursor for use in pagination"""
|
|
674
|
+
cursor: String!
|
|
675
|
+
}
|
|
676
|
+
|
|
677
|
+
type UserLeadNode implements Node {
|
|
678
|
+
createdAt: DateTime!
|
|
679
|
+
updatedAt: DateTime!
|
|
680
|
+
createdBy: UserNode
|
|
681
|
+
updatedBy: UserNode
|
|
682
|
+
|
|
683
|
+
"""The ID of the object"""
|
|
684
|
+
id: ID!
|
|
685
|
+
firstName: String!
|
|
686
|
+
lastName: String!
|
|
687
|
+
email: String!
|
|
688
|
+
phone: String!
|
|
689
|
+
contactMode: String
|
|
690
|
+
preferredContactMode: String
|
|
691
|
+
company: String
|
|
692
|
+
website: String
|
|
693
|
+
startupSize: String
|
|
694
|
+
startupType: JSONString
|
|
695
|
+
leadInterests(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, type: String = null, visible: Boolean = null): TaskTypeNodeConnection!
|
|
696
|
+
leadPriorities: JSONString
|
|
697
|
+
otherComments: String
|
|
698
|
+
leadSource: String
|
|
699
|
+
referralCode: String
|
|
700
|
+
utmSource: String
|
|
701
|
+
utmMedium: String
|
|
702
|
+
utmCampaign: String
|
|
703
|
+
utmTerm: String
|
|
704
|
+
utmContent: String
|
|
705
|
+
gclid: String
|
|
706
|
+
fbclid: String
|
|
707
|
+
complete: Boolean!
|
|
708
|
+
user: UserNode
|
|
709
|
+
knowToDelegate: Boolean!
|
|
710
|
+
taskCards: JSONString
|
|
711
|
+
slot: DateTime
|
|
712
|
+
startupStage: String
|
|
713
|
+
role: String
|
|
714
|
+
timezone: String
|
|
715
|
+
}
|
|
716
|
+
|
|
717
|
+
type TaskTypeNodeConnection {
|
|
718
|
+
"""Pagination data for this connection."""
|
|
719
|
+
pageInfo: PageInfo!
|
|
720
|
+
|
|
721
|
+
"""Contains the nodes in this connection."""
|
|
722
|
+
edges: [TaskTypeNodeEdge]!
|
|
723
|
+
}
|
|
724
|
+
|
|
725
|
+
"""A Relay edge containing a `TaskTypeNode` and its cursor."""
|
|
726
|
+
type TaskTypeNodeEdge {
|
|
727
|
+
"""The item at the end of the edge"""
|
|
728
|
+
node: TaskTypeNode
|
|
729
|
+
|
|
730
|
+
"""A cursor for use in pagination"""
|
|
731
|
+
cursor: String!
|
|
732
|
+
}
|
|
733
|
+
|
|
734
|
+
type TaskStatusNode implements Node {
|
|
735
|
+
createdAt: DateTime!
|
|
736
|
+
updatedAt: DateTime!
|
|
737
|
+
createdBy: UserNode
|
|
738
|
+
updatedBy: UserNode
|
|
739
|
+
|
|
740
|
+
"""The ID of the object"""
|
|
741
|
+
id: ID!
|
|
742
|
+
status: String!
|
|
743
|
+
labelColor: String!
|
|
744
|
+
tasks(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, title: String = null, title_Icontains: String = null, dueDate: DateTime = null, requestDate: DateTime = null, requester: ID = null, manager: ID = null, status: ID = null, status_In: [ID] = null, status_Status: String = null, status_Status_In: [String] = null, completedAt_Gte: DateTime = null, completedAt_Gt: DateTime = null, completedAt_Lte: DateTime = null, completedAt_Lt: DateTime = null, userTeam: ID = null, type: ID = null, associates: [ID] = null, createdAt_Gte: DateTime = null, createdAt_Gt: DateTime = null, createdAt_Lte: DateTime = null, createdAt_Lt: DateTime = null, dataSolution: String = null, billingStatus: String = null): TaskNodeConnection!
|
|
745
|
+
}
|
|
746
|
+
|
|
747
|
+
"""An enumeration."""
|
|
748
|
+
enum TasksTaskDataSolutionChoices {
|
|
749
|
+
"""Lead Generation"""
|
|
750
|
+
LG
|
|
751
|
+
|
|
752
|
+
"""Competitive Research"""
|
|
753
|
+
CR
|
|
754
|
+
|
|
755
|
+
"""Investors Lookup"""
|
|
756
|
+
IL
|
|
757
|
+
|
|
758
|
+
"""Marketing Lookup"""
|
|
759
|
+
ML
|
|
760
|
+
|
|
761
|
+
"""Other"""
|
|
762
|
+
OT
|
|
763
|
+
}
|
|
764
|
+
|
|
765
|
+
"""An enumeration."""
|
|
766
|
+
enum TasksTaskBillingStatusChoices {
|
|
767
|
+
"""Estimated"""
|
|
768
|
+
EST
|
|
769
|
+
|
|
770
|
+
"""Invoiced"""
|
|
771
|
+
INV
|
|
772
|
+
|
|
773
|
+
"""Paid"""
|
|
774
|
+
PAD
|
|
775
|
+
|
|
776
|
+
"""Voided"""
|
|
777
|
+
VOI
|
|
778
|
+
|
|
779
|
+
"""Other"""
|
|
780
|
+
OT
|
|
781
|
+
}
|
|
782
|
+
|
|
783
|
+
type MenuItemNodeConnection {
|
|
784
|
+
"""Pagination data for this connection."""
|
|
785
|
+
pageInfo: PageInfo!
|
|
786
|
+
|
|
787
|
+
"""Contains the nodes in this connection."""
|
|
788
|
+
edges: [MenuItemNodeEdge]!
|
|
789
|
+
}
|
|
790
|
+
|
|
791
|
+
"""A Relay edge containing a `MenuItemNode` and its cursor."""
|
|
792
|
+
type MenuItemNodeEdge {
|
|
793
|
+
"""The item at the end of the edge"""
|
|
794
|
+
node: MenuItemNode
|
|
795
|
+
|
|
796
|
+
"""A cursor for use in pagination"""
|
|
797
|
+
cursor: String!
|
|
798
|
+
}
|
|
799
|
+
|
|
800
|
+
type MenuItemNode implements Node {
|
|
801
|
+
createdAt: DateTime!
|
|
802
|
+
updatedAt: DateTime!
|
|
803
|
+
createdBy: UserNode
|
|
804
|
+
updatedBy: UserNode
|
|
805
|
+
|
|
806
|
+
"""The ID of the object"""
|
|
807
|
+
id: ID!
|
|
808
|
+
description: String
|
|
809
|
+
code: String!
|
|
810
|
+
unit: BillingMenuItemUnitChoices
|
|
811
|
+
|
|
812
|
+
""""""
|
|
813
|
+
price: Decimal
|
|
814
|
+
operation: BillingMenuItemOperationChoices
|
|
815
|
+
taskSet(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, title: String = null, title_Icontains: String = null, dueDate: DateTime = null, requestDate: DateTime = null, requester: ID = null, manager: ID = null, status: ID = null, status_In: [ID] = null, status_Status: String = null, status_Status_In: [String] = null, completedAt_Gte: DateTime = null, completedAt_Gt: DateTime = null, completedAt_Lte: DateTime = null, completedAt_Lt: DateTime = null, userTeam: ID = null, type: ID = null, associates: [ID] = null, createdAt_Gte: DateTime = null, createdAt_Gt: DateTime = null, createdAt_Lte: DateTime = null, createdAt_Lt: DateTime = null, dataSolution: String = null, billingStatus: String = null): TaskNodeConnection!
|
|
816
|
+
taskMenuItems(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, task: ID = null, menuItem: ID = null, unit: String = null, price: Float = null, operation: String = null): TaskMenuItemNodeConnection!
|
|
817
|
+
}
|
|
818
|
+
|
|
819
|
+
"""An enumeration."""
|
|
820
|
+
enum BillingMenuItemUnitChoices {
|
|
821
|
+
"""Per Row"""
|
|
822
|
+
PR
|
|
823
|
+
|
|
824
|
+
"""Per Spreadsheet"""
|
|
825
|
+
PS
|
|
826
|
+
}
|
|
827
|
+
|
|
828
|
+
"""An enumeration."""
|
|
829
|
+
enum BillingMenuItemOperationChoices {
|
|
830
|
+
"""Addition"""
|
|
831
|
+
ADD
|
|
832
|
+
|
|
833
|
+
"""Multiplication"""
|
|
834
|
+
MUL
|
|
835
|
+
}
|
|
836
|
+
|
|
837
|
+
type TaskMenuItemNodeConnection {
|
|
838
|
+
"""Pagination data for this connection."""
|
|
839
|
+
pageInfo: PageInfo!
|
|
840
|
+
|
|
841
|
+
"""Contains the nodes in this connection."""
|
|
842
|
+
edges: [TaskMenuItemNodeEdge]!
|
|
843
|
+
}
|
|
844
|
+
|
|
845
|
+
"""A Relay edge containing a `TaskMenuItemNode` and its cursor."""
|
|
846
|
+
type TaskMenuItemNodeEdge {
|
|
847
|
+
"""The item at the end of the edge"""
|
|
848
|
+
node: TaskMenuItemNode
|
|
849
|
+
|
|
850
|
+
"""A cursor for use in pagination"""
|
|
851
|
+
cursor: String!
|
|
852
|
+
}
|
|
853
|
+
|
|
854
|
+
type TaskMenuItemNode implements Node {
|
|
855
|
+
createdAt: DateTime!
|
|
856
|
+
updatedAt: DateTime!
|
|
857
|
+
createdBy: UserNode
|
|
858
|
+
updatedBy: UserNode
|
|
859
|
+
|
|
860
|
+
"""The ID of the object"""
|
|
861
|
+
id: ID!
|
|
862
|
+
menuItem: MenuItemNode
|
|
863
|
+
task: TaskNode
|
|
864
|
+
unit: BillingTaskMenuItemUnitChoices
|
|
865
|
+
|
|
866
|
+
""""""
|
|
867
|
+
price: Decimal
|
|
868
|
+
operation: BillingTaskMenuItemOperationChoices
|
|
869
|
+
}
|
|
870
|
+
|
|
871
|
+
"""An enumeration."""
|
|
872
|
+
enum BillingTaskMenuItemUnitChoices {
|
|
873
|
+
"""Per Row"""
|
|
874
|
+
PR
|
|
875
|
+
|
|
876
|
+
"""Per Spreadsheet"""
|
|
877
|
+
PS
|
|
878
|
+
}
|
|
879
|
+
|
|
880
|
+
"""An enumeration."""
|
|
881
|
+
enum BillingTaskMenuItemOperationChoices {
|
|
882
|
+
"""Addition"""
|
|
883
|
+
ADD
|
|
884
|
+
|
|
885
|
+
"""Multiplication"""
|
|
886
|
+
MUL
|
|
887
|
+
}
|
|
888
|
+
|
|
889
|
+
type TaskExpenseNodeConnection {
|
|
890
|
+
"""Pagination data for this connection."""
|
|
891
|
+
pageInfo: PageInfo!
|
|
892
|
+
|
|
893
|
+
"""Contains the nodes in this connection."""
|
|
894
|
+
edges: [TaskExpenseNodeEdge]!
|
|
895
|
+
}
|
|
896
|
+
|
|
897
|
+
"""A Relay edge containing a `TaskExpenseNode` and its cursor."""
|
|
898
|
+
type TaskExpenseNodeEdge {
|
|
899
|
+
"""The item at the end of the edge"""
|
|
900
|
+
node: TaskExpenseNode
|
|
901
|
+
|
|
902
|
+
"""A cursor for use in pagination"""
|
|
903
|
+
cursor: String!
|
|
904
|
+
}
|
|
905
|
+
|
|
906
|
+
type TaskExpenseNode implements Node {
|
|
907
|
+
createdAt: DateTime!
|
|
908
|
+
updatedAt: DateTime!
|
|
909
|
+
createdBy: UserNode
|
|
910
|
+
updatedBy: UserNode
|
|
911
|
+
|
|
912
|
+
"""The ID of the object"""
|
|
913
|
+
id: ID!
|
|
914
|
+
expenseItem: String!
|
|
915
|
+
|
|
916
|
+
""""""
|
|
917
|
+
cost: Decimal!
|
|
918
|
+
task: TaskNode
|
|
919
|
+
receiptLink: String!
|
|
920
|
+
sentInvoice: Boolean!
|
|
921
|
+
}
|
|
922
|
+
|
|
923
|
+
type TaskFileNodeConnection {
|
|
924
|
+
"""Pagination data for this connection."""
|
|
925
|
+
pageInfo: PageInfo!
|
|
926
|
+
|
|
927
|
+
"""Contains the nodes in this connection."""
|
|
928
|
+
edges: [TaskFileNodeEdge]!
|
|
929
|
+
}
|
|
930
|
+
|
|
931
|
+
"""A Relay edge containing a `TaskFileNode` and its cursor."""
|
|
932
|
+
type TaskFileNodeEdge {
|
|
933
|
+
"""The item at the end of the edge"""
|
|
934
|
+
node: TaskFileNode
|
|
935
|
+
|
|
936
|
+
"""A cursor for use in pagination"""
|
|
937
|
+
cursor: String!
|
|
938
|
+
}
|
|
939
|
+
|
|
940
|
+
type TaskFileNode implements Node {
|
|
941
|
+
createdAt: DateTime!
|
|
942
|
+
updatedAt: DateTime!
|
|
943
|
+
createdBy: UserNode
|
|
944
|
+
updatedBy: UserNode
|
|
945
|
+
|
|
946
|
+
"""The ID of the object"""
|
|
947
|
+
id: ID!
|
|
948
|
+
task: TaskNode
|
|
949
|
+
fileLink: String!
|
|
950
|
+
name: String!
|
|
951
|
+
fileType: String!
|
|
952
|
+
}
|
|
953
|
+
|
|
954
|
+
type TaskFeedbackNodeConnection {
|
|
955
|
+
"""Pagination data for this connection."""
|
|
956
|
+
pageInfo: PageInfo!
|
|
957
|
+
|
|
958
|
+
"""Contains the nodes in this connection."""
|
|
959
|
+
edges: [TaskFeedbackNodeEdge]!
|
|
960
|
+
}
|
|
961
|
+
|
|
962
|
+
"""A Relay edge containing a `TaskFeedbackNode` and its cursor."""
|
|
963
|
+
type TaskFeedbackNodeEdge {
|
|
964
|
+
"""The item at the end of the edge"""
|
|
965
|
+
node: TaskFeedbackNode
|
|
966
|
+
|
|
967
|
+
"""A cursor for use in pagination"""
|
|
968
|
+
cursor: String!
|
|
969
|
+
}
|
|
970
|
+
|
|
971
|
+
type TaskFeedbackNode implements Node {
|
|
972
|
+
createdAt: DateTime!
|
|
973
|
+
updatedAt: DateTime!
|
|
974
|
+
createdBy: UserNode
|
|
975
|
+
updatedBy: UserNode
|
|
976
|
+
|
|
977
|
+
"""The ID of the object"""
|
|
978
|
+
id: ID!
|
|
979
|
+
giver: UserNode
|
|
980
|
+
receiver: UserNode
|
|
981
|
+
task: TaskNode
|
|
982
|
+
question: JSONString!
|
|
983
|
+
answer: JSONString
|
|
984
|
+
comment: JSONString
|
|
985
|
+
}
|
|
986
|
+
|
|
987
|
+
type TaskReviewNode implements Node {
|
|
988
|
+
createdAt: DateTime!
|
|
989
|
+
updatedAt: DateTime!
|
|
990
|
+
|
|
991
|
+
"""The ID of the object"""
|
|
992
|
+
id: ID!
|
|
993
|
+
task: TaskNode!
|
|
994
|
+
satisfactionRating: Int!
|
|
995
|
+
satisfactionFeedback: String
|
|
996
|
+
nps: Int
|
|
997
|
+
npsFeedback: String
|
|
998
|
+
status: TasksTaskReviewStatusChoices
|
|
999
|
+
extraQuestions: JSONString
|
|
1000
|
+
}
|
|
1001
|
+
|
|
1002
|
+
"""An enumeration."""
|
|
1003
|
+
enum TasksTaskReviewStatusChoices {
|
|
1004
|
+
"""Started"""
|
|
1005
|
+
STARTED
|
|
1006
|
+
|
|
1007
|
+
"""Completed"""
|
|
1008
|
+
COMPLETED
|
|
1009
|
+
}
|
|
1010
|
+
|
|
1011
|
+
type WorkHoursNodeConnection {
|
|
1012
|
+
"""Pagination data for this connection."""
|
|
1013
|
+
pageInfo: PageInfo!
|
|
1014
|
+
|
|
1015
|
+
"""Contains the nodes in this connection."""
|
|
1016
|
+
edges: [WorkHoursNodeEdge]!
|
|
1017
|
+
}
|
|
1018
|
+
|
|
1019
|
+
"""A Relay edge containing a `WorkHoursNode` and its cursor."""
|
|
1020
|
+
type WorkHoursNodeEdge {
|
|
1021
|
+
"""The item at the end of the edge"""
|
|
1022
|
+
node: WorkHoursNode
|
|
1023
|
+
|
|
1024
|
+
"""A cursor for use in pagination"""
|
|
1025
|
+
cursor: String!
|
|
1026
|
+
}
|
|
1027
|
+
|
|
1028
|
+
type WorkHoursNode implements Node {
|
|
1029
|
+
createdBy: UserNode
|
|
1030
|
+
updatedBy: UserNode
|
|
1031
|
+
|
|
1032
|
+
"""The ID of the object"""
|
|
1033
|
+
id: ID!
|
|
1034
|
+
startedAt: DateTime!
|
|
1035
|
+
endedAt: DateTime
|
|
1036
|
+
timeSpent: Int!
|
|
1037
|
+
log: String!
|
|
1038
|
+
task: TaskNode
|
|
1039
|
+
team: TeamNode
|
|
1040
|
+
associate: UserNode
|
|
1041
|
+
link: String
|
|
1042
|
+
workType: String
|
|
1043
|
+
paidOut: Boolean!
|
|
1044
|
+
sentInvoice: Boolean!
|
|
1045
|
+
createdAt: DateTime!
|
|
1046
|
+
updatedAt: DateTime!
|
|
1047
|
+
}
|
|
1048
|
+
|
|
1049
|
+
type InvoiceNodeConnection {
|
|
1050
|
+
"""Pagination data for this connection."""
|
|
1051
|
+
pageInfo: PageInfo!
|
|
1052
|
+
|
|
1053
|
+
"""Contains the nodes in this connection."""
|
|
1054
|
+
edges: [InvoiceNodeEdge]!
|
|
1055
|
+
}
|
|
1056
|
+
|
|
1057
|
+
"""A Relay edge containing a `InvoiceNode` and its cursor."""
|
|
1058
|
+
type InvoiceNodeEdge {
|
|
1059
|
+
"""The item at the end of the edge"""
|
|
1060
|
+
node: InvoiceNode
|
|
1061
|
+
|
|
1062
|
+
"""A cursor for use in pagination"""
|
|
1063
|
+
cursor: String!
|
|
1064
|
+
}
|
|
1065
|
+
|
|
1066
|
+
type InvoiceNode implements Node {
|
|
1067
|
+
createdAt: DateTime!
|
|
1068
|
+
updatedAt: DateTime!
|
|
1069
|
+
createdBy: UserNode
|
|
1070
|
+
updatedBy: UserNode
|
|
1071
|
+
|
|
1072
|
+
"""The ID of the object"""
|
|
1073
|
+
id: ID!
|
|
1074
|
+
team: TeamNode
|
|
1075
|
+
tasks(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, title: String = null, title_Icontains: String = null, dueDate: DateTime = null, requestDate: DateTime = null, requester: ID = null, manager: ID = null, status: ID = null, status_In: [ID] = null, status_Status: String = null, status_Status_In: [String] = null, completedAt_Gte: DateTime = null, completedAt_Gt: DateTime = null, completedAt_Lte: DateTime = null, completedAt_Lt: DateTime = null, userTeam: ID = null, type: ID = null, associates: [ID] = null, createdAt_Gte: DateTime = null, createdAt_Gt: DateTime = null, createdAt_Lte: DateTime = null, createdAt_Lt: DateTime = null, dataSolution: String = null, billingStatus: String = null): TaskNodeConnection!
|
|
1076
|
+
memo: String
|
|
1077
|
+
taskInvoice(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, invoice: ID = null, task: ID = null, createdAt_Gte: DateTime = null, createdAt_Gt: DateTime = null, createdAt_Lte: DateTime = null, createdAt_Lt: DateTime = null): InvoiceTasksNodeConnection!
|
|
1078
|
+
}
|
|
1079
|
+
|
|
1080
|
+
type InvoiceTasksNodeConnection {
|
|
1081
|
+
"""Pagination data for this connection."""
|
|
1082
|
+
pageInfo: PageInfo!
|
|
1083
|
+
|
|
1084
|
+
"""Contains the nodes in this connection."""
|
|
1085
|
+
edges: [InvoiceTasksNodeEdge]!
|
|
1086
|
+
}
|
|
1087
|
+
|
|
1088
|
+
"""A Relay edge containing a `InvoiceTasksNode` and its cursor."""
|
|
1089
|
+
type InvoiceTasksNodeEdge {
|
|
1090
|
+
"""The item at the end of the edge"""
|
|
1091
|
+
node: InvoiceTasksNode
|
|
1092
|
+
|
|
1093
|
+
"""A cursor for use in pagination"""
|
|
1094
|
+
cursor: String!
|
|
1095
|
+
}
|
|
1096
|
+
|
|
1097
|
+
type InvoiceTasksNode implements Node {
|
|
1098
|
+
createdAt: DateTime!
|
|
1099
|
+
updatedAt: DateTime!
|
|
1100
|
+
createdBy: UserNode
|
|
1101
|
+
updatedBy: UserNode
|
|
1102
|
+
|
|
1103
|
+
"""The ID of the object"""
|
|
1104
|
+
id: ID!
|
|
1105
|
+
invoice: InvoiceNode
|
|
1106
|
+
task: TaskNode
|
|
1107
|
+
}
|
|
1108
|
+
|
|
1109
|
+
type UserTestimonialNodeConnection {
|
|
1110
|
+
"""Pagination data for this connection."""
|
|
1111
|
+
pageInfo: PageInfo!
|
|
1112
|
+
|
|
1113
|
+
"""Contains the nodes in this connection."""
|
|
1114
|
+
edges: [UserTestimonialNodeEdge]!
|
|
1115
|
+
}
|
|
1116
|
+
|
|
1117
|
+
"""A Relay edge containing a `UserTestimonialNode` and its cursor."""
|
|
1118
|
+
type UserTestimonialNodeEdge {
|
|
1119
|
+
"""The item at the end of the edge"""
|
|
1120
|
+
node: UserTestimonialNode
|
|
1121
|
+
|
|
1122
|
+
"""A cursor for use in pagination"""
|
|
1123
|
+
cursor: String!
|
|
1124
|
+
}
|
|
1125
|
+
|
|
1126
|
+
type UserTestimonialNode implements Node {
|
|
1127
|
+
createdAt: DateTime!
|
|
1128
|
+
updatedAt: DateTime!
|
|
1129
|
+
createdBy: UserNode
|
|
1130
|
+
updatedBy: UserNode
|
|
1131
|
+
|
|
1132
|
+
"""The ID of the object"""
|
|
1133
|
+
id: ID!
|
|
1134
|
+
user: UserNode
|
|
1135
|
+
userQuote: String!
|
|
1136
|
+
userFname: String!
|
|
1137
|
+
userLname: String!
|
|
1138
|
+
userHeadshot: String
|
|
1139
|
+
team: TeamNode
|
|
1140
|
+
teamLogo: String
|
|
1141
|
+
website: String
|
|
1142
|
+
teamName: String
|
|
1143
|
+
title: String
|
|
1144
|
+
}
|
|
1145
|
+
|
|
1146
|
+
type CreditLogNodeConnection {
|
|
1147
|
+
"""Pagination data for this connection."""
|
|
1148
|
+
pageInfo: PageInfo!
|
|
1149
|
+
|
|
1150
|
+
"""Contains the nodes in this connection."""
|
|
1151
|
+
edges: [CreditLogNodeEdge]!
|
|
1152
|
+
}
|
|
1153
|
+
|
|
1154
|
+
"""A Relay edge containing a `CreditLogNode` and its cursor."""
|
|
1155
|
+
type CreditLogNodeEdge {
|
|
1156
|
+
"""The item at the end of the edge"""
|
|
1157
|
+
node: CreditLogNode
|
|
1158
|
+
|
|
1159
|
+
"""A cursor for use in pagination"""
|
|
1160
|
+
cursor: String!
|
|
1161
|
+
}
|
|
1162
|
+
|
|
1163
|
+
type CreditLogNode implements Node {
|
|
1164
|
+
createdAt: DateTime!
|
|
1165
|
+
updatedAt: DateTime!
|
|
1166
|
+
createdBy: UserNode
|
|
1167
|
+
updatedBy: UserNode
|
|
1168
|
+
|
|
1169
|
+
"""The ID of the object"""
|
|
1170
|
+
id: ID!
|
|
1171
|
+
label: String!
|
|
1172
|
+
description: String
|
|
1173
|
+
team: TeamNode
|
|
1174
|
+
|
|
1175
|
+
""""""
|
|
1176
|
+
hourlyRate: Decimal!
|
|
1177
|
+
|
|
1178
|
+
""""""
|
|
1179
|
+
discount: Decimal!
|
|
1180
|
+
objectId: Int!
|
|
1181
|
+
user: UserNode
|
|
1182
|
+
value: Int!
|
|
1183
|
+
}
|
|
1184
|
+
|
|
1185
|
+
type PublicBlogPostNodeConnection {
|
|
1186
|
+
"""Pagination data for this connection."""
|
|
1187
|
+
pageInfo: PageInfo!
|
|
1188
|
+
|
|
1189
|
+
"""Contains the nodes in this connection."""
|
|
1190
|
+
edges: [PublicBlogPostNodeEdge]!
|
|
1191
|
+
}
|
|
1192
|
+
|
|
1193
|
+
"""A Relay edge containing a `PublicBlogPostNode` and its cursor."""
|
|
1194
|
+
type PublicBlogPostNodeEdge {
|
|
1195
|
+
"""The item at the end of the edge"""
|
|
1196
|
+
node: PublicBlogPostNode
|
|
1197
|
+
|
|
1198
|
+
"""A cursor for use in pagination"""
|
|
1199
|
+
cursor: String!
|
|
1200
|
+
}
|
|
1201
|
+
|
|
1202
|
+
type PublicBlogPostNode implements Node {
|
|
1203
|
+
createdAt: DateTime!
|
|
1204
|
+
updatedAt: DateTime!
|
|
1205
|
+
|
|
1206
|
+
"""The ID of the object"""
|
|
1207
|
+
id: ID!
|
|
1208
|
+
title: String
|
|
1209
|
+
slug: String!
|
|
1210
|
+
seoTitleTag: String
|
|
1211
|
+
seoMetaDescription: String
|
|
1212
|
+
description: String
|
|
1213
|
+
content: String
|
|
1214
|
+
mainImage: String
|
|
1215
|
+
author: UserNode
|
|
1216
|
+
category: BlogCategoryNode
|
|
1217
|
+
itemType: BlogBlogPostItemTypeChoices!
|
|
1218
|
+
wordCount: Int
|
|
1219
|
+
publishedOn: DateTime
|
|
1220
|
+
relatedArticles(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, category_Slug: String = null): PublicBlogPostNodeConnection!
|
|
1221
|
+
ctaText: String
|
|
1222
|
+
color: String
|
|
1223
|
+
}
|
|
1224
|
+
|
|
1225
|
+
type BlogCategoryNode implements Node {
|
|
1226
|
+
createdAt: DateTime!
|
|
1227
|
+
updatedAt: DateTime!
|
|
1228
|
+
|
|
1229
|
+
"""The ID of the object"""
|
|
1230
|
+
id: ID!
|
|
1231
|
+
name: String
|
|
1232
|
+
slug: String!
|
|
1233
|
+
seoTitleTag: String
|
|
1234
|
+
seoMetaDescription: String
|
|
1235
|
+
description: String
|
|
1236
|
+
blogPosts(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, category_Slug: String = null): PublicBlogPostNodeConnection!
|
|
1237
|
+
}
|
|
1238
|
+
|
|
1239
|
+
"""An enumeration."""
|
|
1240
|
+
enum BlogBlogPostItemTypeChoices {
|
|
1241
|
+
"""BlogPosting"""
|
|
1242
|
+
BLOG_POSTING
|
|
1243
|
+
|
|
1244
|
+
"""FAQ"""
|
|
1245
|
+
F_A_Q_PAGE
|
|
1246
|
+
|
|
1247
|
+
"""HowTo"""
|
|
1248
|
+
HOW_TO
|
|
1249
|
+
}
|
|
1250
|
+
|
|
1251
|
+
type UserStatusNodeConnection {
|
|
1252
|
+
"""Pagination data for this connection."""
|
|
1253
|
+
pageInfo: PageInfo!
|
|
1254
|
+
|
|
1255
|
+
"""Contains the nodes in this connection."""
|
|
1256
|
+
edges: [UserStatusNodeEdge]!
|
|
1257
|
+
}
|
|
1258
|
+
|
|
1259
|
+
"""A Relay edge containing a `UserStatusNode` and its cursor."""
|
|
1260
|
+
type UserStatusNodeEdge {
|
|
1261
|
+
"""The item at the end of the edge"""
|
|
1262
|
+
node: UserStatusNode
|
|
1263
|
+
|
|
1264
|
+
"""A cursor for use in pagination"""
|
|
1265
|
+
cursor: String!
|
|
1266
|
+
}
|
|
1267
|
+
|
|
1268
|
+
type UserStatusNode implements Node {
|
|
1269
|
+
createdAt: DateTime!
|
|
1270
|
+
updatedAt: DateTime!
|
|
1271
|
+
createdBy: UserNode
|
|
1272
|
+
updatedBy: UserNode
|
|
1273
|
+
|
|
1274
|
+
"""The ID of the object"""
|
|
1275
|
+
id: ID!
|
|
1276
|
+
status: String!
|
|
1277
|
+
userProfiles(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, user: ID = null, user_FirstName: String = null, user_FirstName_Icontains: String = null, user_LastName: String = null, user_LastName_Icontains: String = null, user_Email: String = null, user_Email_Icontains: String = null, user_Groups: [ID] = null, user_Groups_In: [[ID]] = null, address: String = null, city: String = null, country: String = null, phone: String = null, timezone: String = null, contactMode: String = null, billing: Boolean = null, auth0Id: String = null, profilePicture: String = null, onEmailList: Boolean = null, salary: Int = null, setupComplete: Boolean = null, title: String = null, titleDescription: String = null, birthDate: Date = null, status: ID = null, marketingChannel: ID = null, referredBy: ID = null, createdAt_Gte: DateTime = null, createdAt_Gt: DateTime = null, createdAt_Lte: DateTime = null, createdAt_Lt: DateTime = null, leadFlag: Boolean = null, surveyComplete: Boolean = null): UserProfileNodeConnection!
|
|
1278
|
+
}
|
|
1279
|
+
|
|
1280
|
+
type UserProfileNodeConnection {
|
|
1281
|
+
"""Pagination data for this connection."""
|
|
1282
|
+
pageInfo: PageInfo!
|
|
1283
|
+
|
|
1284
|
+
"""Contains the nodes in this connection."""
|
|
1285
|
+
edges: [UserProfileNodeEdge]!
|
|
1286
|
+
}
|
|
1287
|
+
|
|
1288
|
+
"""A Relay edge containing a `UserProfileNode` and its cursor."""
|
|
1289
|
+
type UserProfileNodeEdge {
|
|
1290
|
+
"""The item at the end of the edge"""
|
|
1291
|
+
node: UserProfileNode
|
|
1292
|
+
|
|
1293
|
+
"""A cursor for use in pagination"""
|
|
1294
|
+
cursor: String!
|
|
1295
|
+
}
|
|
1296
|
+
|
|
1297
|
+
type UserProfileNode implements Node {
|
|
1298
|
+
createdAt: DateTime!
|
|
1299
|
+
updatedAt: DateTime!
|
|
1300
|
+
|
|
1301
|
+
"""The ID of the object"""
|
|
1302
|
+
id: ID!
|
|
1303
|
+
user: UserNode!
|
|
1304
|
+
address: String
|
|
1305
|
+
city: String
|
|
1306
|
+
secondaryEmail: String
|
|
1307
|
+
country: String
|
|
1308
|
+
phone: String!
|
|
1309
|
+
timezone: String
|
|
1310
|
+
contactMode: String
|
|
1311
|
+
auth0Id: String
|
|
1312
|
+
profilePicture: String
|
|
1313
|
+
|
|
1314
|
+
""""""
|
|
1315
|
+
hourlyRate: Decimal
|
|
1316
|
+
salary: Int
|
|
1317
|
+
title: String
|
|
1318
|
+
titleDescription: String
|
|
1319
|
+
birthDate: Date
|
|
1320
|
+
status: UserStatusNode
|
|
1321
|
+
referredBy: PromoCodeNode
|
|
1322
|
+
marketingChannel: MarketingChannelNode
|
|
1323
|
+
manager: UserNode
|
|
1324
|
+
contactOwner: UserNode
|
|
1325
|
+
billing: Boolean!
|
|
1326
|
+
onEmailList: Boolean!
|
|
1327
|
+
setupComplete: Boolean!
|
|
1328
|
+
utmSource: String
|
|
1329
|
+
utmMedium: String
|
|
1330
|
+
utmCampaign: String
|
|
1331
|
+
utmTerm: String
|
|
1332
|
+
utmContent: String
|
|
1333
|
+
gclid: String
|
|
1334
|
+
fbclid: String
|
|
1335
|
+
tasksIndex: Int!
|
|
1336
|
+
lastTaskRequestedAt: DateTime
|
|
1337
|
+
preferredContactMode: String
|
|
1338
|
+
company: String
|
|
1339
|
+
website: String
|
|
1340
|
+
startupSize: String
|
|
1341
|
+
startupType: JSONString
|
|
1342
|
+
leadPriorities: JSONString
|
|
1343
|
+
otherComments: String
|
|
1344
|
+
leadSource: String
|
|
1345
|
+
surveyComplete: Boolean!
|
|
1346
|
+
leadFlag: Boolean!
|
|
1347
|
+
}
|
|
1348
|
+
|
|
1349
|
+
"""
|
|
1350
|
+
The `Date` scalar type represents a Date
|
|
1351
|
+
value as specified by
|
|
1352
|
+
[iso8601](https://en.wikipedia.org/wiki/ISO_8601).
|
|
1353
|
+
"""
|
|
1354
|
+
scalar Date
|
|
1355
|
+
|
|
1356
|
+
type PromoCodeNode implements Node {
|
|
1357
|
+
createdAt: DateTime!
|
|
1358
|
+
updatedAt: DateTime!
|
|
1359
|
+
createdBy: UserNode
|
|
1360
|
+
updatedBy: UserNode
|
|
1361
|
+
|
|
1362
|
+
"""The ID of the object"""
|
|
1363
|
+
id: ID!
|
|
1364
|
+
code: String!
|
|
1365
|
+
label: String!
|
|
1366
|
+
project: String
|
|
1367
|
+
referrer: UserNode
|
|
1368
|
+
resource: String
|
|
1369
|
+
type: String!
|
|
1370
|
+
value: Int!
|
|
1371
|
+
userProfiles(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, user: ID = null, user_FirstName: String = null, user_FirstName_Icontains: String = null, user_LastName: String = null, user_LastName_Icontains: String = null, user_Email: String = null, user_Email_Icontains: String = null, user_Groups: [ID] = null, user_Groups_In: [[ID]] = null, address: String = null, city: String = null, country: String = null, phone: String = null, timezone: String = null, contactMode: String = null, billing: Boolean = null, auth0Id: String = null, profilePicture: String = null, onEmailList: Boolean = null, salary: Int = null, setupComplete: Boolean = null, title: String = null, titleDescription: String = null, birthDate: Date = null, status: ID = null, marketingChannel: ID = null, referredBy: ID = null, createdAt_Gte: DateTime = null, createdAt_Gt: DateTime = null, createdAt_Lte: DateTime = null, createdAt_Lt: DateTime = null, leadFlag: Boolean = null, surveyComplete: Boolean = null): UserProfileNodeConnection!
|
|
1372
|
+
}
|
|
1373
|
+
|
|
1374
|
+
type MarketingChannelNode implements Node {
|
|
1375
|
+
createdAt: DateTime!
|
|
1376
|
+
updatedAt: DateTime!
|
|
1377
|
+
createdBy: UserNode
|
|
1378
|
+
updatedBy: UserNode
|
|
1379
|
+
|
|
1380
|
+
"""The ID of the object"""
|
|
1381
|
+
id: ID!
|
|
1382
|
+
label: String!
|
|
1383
|
+
show: Boolean!
|
|
1384
|
+
value: Int!
|
|
1385
|
+
userProfiles(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, user: ID = null, user_FirstName: String = null, user_FirstName_Icontains: String = null, user_LastName: String = null, user_LastName_Icontains: String = null, user_Email: String = null, user_Email_Icontains: String = null, user_Groups: [ID] = null, user_Groups_In: [[ID]] = null, address: String = null, city: String = null, country: String = null, phone: String = null, timezone: String = null, contactMode: String = null, billing: Boolean = null, auth0Id: String = null, profilePicture: String = null, onEmailList: Boolean = null, salary: Int = null, setupComplete: Boolean = null, title: String = null, titleDescription: String = null, birthDate: Date = null, status: ID = null, marketingChannel: ID = null, referredBy: ID = null, createdAt_Gte: DateTime = null, createdAt_Gt: DateTime = null, createdAt_Lte: DateTime = null, createdAt_Lt: DateTime = null, leadFlag: Boolean = null, surveyComplete: Boolean = null): UserProfileNodeConnection!
|
|
1386
|
+
}
|
|
1387
|
+
|
|
1388
|
+
type StageNodeConnection {
|
|
1389
|
+
"""Pagination data for this connection."""
|
|
1390
|
+
pageInfo: PageInfo!
|
|
1391
|
+
|
|
1392
|
+
"""Contains the nodes in this connection."""
|
|
1393
|
+
edges: [StageNodeEdge]!
|
|
1394
|
+
}
|
|
1395
|
+
|
|
1396
|
+
"""A Relay edge containing a `StageNode` and its cursor."""
|
|
1397
|
+
type StageNodeEdge {
|
|
1398
|
+
"""The item at the end of the edge"""
|
|
1399
|
+
node: StageNode
|
|
1400
|
+
|
|
1401
|
+
"""A cursor for use in pagination"""
|
|
1402
|
+
cursor: String!
|
|
1403
|
+
}
|
|
1404
|
+
|
|
1405
|
+
type UserSegmentNodeConnection {
|
|
1406
|
+
"""Pagination data for this connection."""
|
|
1407
|
+
pageInfo: PageInfo!
|
|
1408
|
+
|
|
1409
|
+
"""Contains the nodes in this connection."""
|
|
1410
|
+
edges: [UserSegmentNodeEdge]!
|
|
1411
|
+
}
|
|
1412
|
+
|
|
1413
|
+
"""A Relay edge containing a `UserSegmentNode` and its cursor."""
|
|
1414
|
+
type UserSegmentNodeEdge {
|
|
1415
|
+
"""The item at the end of the edge"""
|
|
1416
|
+
node: UserSegmentNode
|
|
1417
|
+
|
|
1418
|
+
"""A cursor for use in pagination"""
|
|
1419
|
+
cursor: String!
|
|
1420
|
+
}
|
|
1421
|
+
|
|
1422
|
+
type UserSegmentNode implements Node {
|
|
1423
|
+
createdAt: DateTime!
|
|
1424
|
+
updatedAt: DateTime!
|
|
1425
|
+
createdBy: UserNode
|
|
1426
|
+
updatedBy: UserNode
|
|
1427
|
+
|
|
1428
|
+
"""The ID of the object"""
|
|
1429
|
+
id: ID!
|
|
1430
|
+
segment: String!
|
|
1431
|
+
label: String
|
|
1432
|
+
users(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, firstName: String = null, lastName: String = null, email: String = null, username: String = null, groups_Name: String = null): UserNodeConnection!
|
|
1433
|
+
value: Int!
|
|
1434
|
+
}
|
|
1435
|
+
|
|
1436
|
+
type UserNoteNodeConnection {
|
|
1437
|
+
"""Pagination data for this connection."""
|
|
1438
|
+
pageInfo: PageInfo!
|
|
1439
|
+
|
|
1440
|
+
"""Contains the nodes in this connection."""
|
|
1441
|
+
edges: [UserNoteNodeEdge]!
|
|
1442
|
+
}
|
|
1443
|
+
|
|
1444
|
+
"""A Relay edge containing a `UserNoteNode` and its cursor."""
|
|
1445
|
+
type UserNoteNodeEdge {
|
|
1446
|
+
"""The item at the end of the edge"""
|
|
1447
|
+
node: UserNoteNode
|
|
1448
|
+
|
|
1449
|
+
"""A cursor for use in pagination"""
|
|
1450
|
+
cursor: String!
|
|
1451
|
+
}
|
|
1452
|
+
|
|
1453
|
+
type UserNoteNode implements Node {
|
|
1454
|
+
createdAt: DateTime!
|
|
1455
|
+
updatedAt: DateTime!
|
|
1456
|
+
|
|
1457
|
+
"""The ID of the object"""
|
|
1458
|
+
id: ID!
|
|
1459
|
+
note: String!
|
|
1460
|
+
user: UserNode
|
|
1461
|
+
date: Date!
|
|
1462
|
+
notetaker: UserNode
|
|
1463
|
+
}
|
|
1464
|
+
|
|
1465
|
+
type UserFeedbackNodeConnection {
|
|
1466
|
+
"""Pagination data for this connection."""
|
|
1467
|
+
pageInfo: PageInfo!
|
|
1468
|
+
|
|
1469
|
+
"""Contains the nodes in this connection."""
|
|
1470
|
+
edges: [UserFeedbackNodeEdge]!
|
|
1471
|
+
}
|
|
1472
|
+
|
|
1473
|
+
"""A Relay edge containing a `UserFeedbackNode` and its cursor."""
|
|
1474
|
+
type UserFeedbackNodeEdge {
|
|
1475
|
+
"""The item at the end of the edge"""
|
|
1476
|
+
node: UserFeedbackNode
|
|
1477
|
+
|
|
1478
|
+
"""A cursor for use in pagination"""
|
|
1479
|
+
cursor: String!
|
|
1480
|
+
}
|
|
1481
|
+
|
|
1482
|
+
type UserFeedbackNode implements Node {
|
|
1483
|
+
createdAt: DateTime!
|
|
1484
|
+
updatedAt: DateTime!
|
|
1485
|
+
createdBy: UserNode
|
|
1486
|
+
updatedBy: UserNode
|
|
1487
|
+
|
|
1488
|
+
"""The ID of the object"""
|
|
1489
|
+
id: ID!
|
|
1490
|
+
user: UserNode!
|
|
1491
|
+
survey: String!
|
|
1492
|
+
nps: Int!
|
|
1493
|
+
reason: String
|
|
1494
|
+
comments: String
|
|
1495
|
+
}
|
|
1496
|
+
|
|
1497
|
+
type TaskInterestNodeConnection {
|
|
1498
|
+
"""Pagination data for this connection."""
|
|
1499
|
+
pageInfo: PageInfo!
|
|
1500
|
+
|
|
1501
|
+
"""Contains the nodes in this connection."""
|
|
1502
|
+
edges: [TaskInterestNodeEdge]!
|
|
1503
|
+
}
|
|
1504
|
+
|
|
1505
|
+
"""A Relay edge containing a `TaskInterestNode` and its cursor."""
|
|
1506
|
+
type TaskInterestNodeEdge {
|
|
1507
|
+
"""The item at the end of the edge"""
|
|
1508
|
+
node: TaskInterestNode
|
|
1509
|
+
|
|
1510
|
+
"""A cursor for use in pagination"""
|
|
1511
|
+
cursor: String!
|
|
1512
|
+
}
|
|
1513
|
+
|
|
1514
|
+
type TaskInterestNode implements Node {
|
|
1515
|
+
createdAt: DateTime!
|
|
1516
|
+
updatedAt: DateTime!
|
|
1517
|
+
|
|
1518
|
+
"""The ID of the object"""
|
|
1519
|
+
id: ID!
|
|
1520
|
+
label: String!
|
|
1521
|
+
description: String
|
|
1522
|
+
hubspotLabel: String
|
|
1523
|
+
users(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, firstName: String = null, lastName: String = null, email: String = null, username: String = null, groups_Name: String = null): UserNodeConnection!
|
|
1524
|
+
}
|
|
1525
|
+
|
|
1526
|
+
type TaskStatusNodeConnection {
|
|
1527
|
+
"""Pagination data for this connection."""
|
|
1528
|
+
pageInfo: PageInfo!
|
|
1529
|
+
|
|
1530
|
+
"""Contains the nodes in this connection."""
|
|
1531
|
+
edges: [TaskStatusNodeEdge]!
|
|
1532
|
+
}
|
|
1533
|
+
|
|
1534
|
+
"""A Relay edge containing a `TaskStatusNode` and its cursor."""
|
|
1535
|
+
type TaskStatusNodeEdge {
|
|
1536
|
+
"""The item at the end of the edge"""
|
|
1537
|
+
node: TaskStatusNode
|
|
1538
|
+
|
|
1539
|
+
"""A cursor for use in pagination"""
|
|
1540
|
+
cursor: String!
|
|
1541
|
+
}
|
|
1542
|
+
|
|
1543
|
+
type EmailListNodeConnection {
|
|
1544
|
+
"""Pagination data for this connection."""
|
|
1545
|
+
pageInfo: PageInfo!
|
|
1546
|
+
|
|
1547
|
+
"""Contains the nodes in this connection."""
|
|
1548
|
+
edges: [EmailListNodeEdge]!
|
|
1549
|
+
}
|
|
1550
|
+
|
|
1551
|
+
"""A Relay edge containing a `EmailListNode` and its cursor."""
|
|
1552
|
+
type EmailListNodeEdge {
|
|
1553
|
+
"""The item at the end of the edge"""
|
|
1554
|
+
node: EmailListNode
|
|
1555
|
+
|
|
1556
|
+
"""A cursor for use in pagination"""
|
|
1557
|
+
cursor: String!
|
|
1558
|
+
}
|
|
1559
|
+
|
|
1560
|
+
type EmailListNode implements Node {
|
|
1561
|
+
createdAt: DateTime!
|
|
1562
|
+
updatedAt: DateTime!
|
|
1563
|
+
createdBy: UserNode
|
|
1564
|
+
updatedBy: UserNode
|
|
1565
|
+
|
|
1566
|
+
"""The ID of the object"""
|
|
1567
|
+
id: ID!
|
|
1568
|
+
type: String!
|
|
1569
|
+
description: String!
|
|
1570
|
+
users(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, firstName: String = null, lastName: String = null, email: String = null, username: String = null, groups_Name: String = null): UserNodeConnection!
|
|
1571
|
+
}
|
|
1572
|
+
|
|
1573
|
+
type MessageTemplateNodeConnection {
|
|
1574
|
+
"""Pagination data for this connection."""
|
|
1575
|
+
pageInfo: PageInfo!
|
|
1576
|
+
|
|
1577
|
+
"""Contains the nodes in this connection."""
|
|
1578
|
+
edges: [MessageTemplateNodeEdge]!
|
|
1579
|
+
}
|
|
1580
|
+
|
|
1581
|
+
"""A Relay edge containing a `MessageTemplateNode` and its cursor."""
|
|
1582
|
+
type MessageTemplateNodeEdge {
|
|
1583
|
+
"""The item at the end of the edge"""
|
|
1584
|
+
node: MessageTemplateNode
|
|
1585
|
+
|
|
1586
|
+
"""A cursor for use in pagination"""
|
|
1587
|
+
cursor: String!
|
|
1588
|
+
}
|
|
1589
|
+
|
|
1590
|
+
type MessageTemplateNode implements Node {
|
|
1591
|
+
createdAt: DateTime!
|
|
1592
|
+
updatedAt: DateTime!
|
|
1593
|
+
createdBy: UserNode
|
|
1594
|
+
updatedBy: UserNode
|
|
1595
|
+
|
|
1596
|
+
"""The ID of the object"""
|
|
1597
|
+
id: ID!
|
|
1598
|
+
goal: String!
|
|
1599
|
+
content: String
|
|
1600
|
+
subject: String
|
|
1601
|
+
contactLogs(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, email: String = null, dateSent: DateTime = null): ContactLogNodeConnection!
|
|
1602
|
+
}
|
|
1603
|
+
|
|
1604
|
+
type ContactLogNodeConnection {
|
|
1605
|
+
"""Pagination data for this connection."""
|
|
1606
|
+
pageInfo: PageInfo!
|
|
1607
|
+
|
|
1608
|
+
"""Contains the nodes in this connection."""
|
|
1609
|
+
edges: [ContactLogNodeEdge]!
|
|
1610
|
+
}
|
|
1611
|
+
|
|
1612
|
+
"""A Relay edge containing a `ContactLogNode` and its cursor."""
|
|
1613
|
+
type ContactLogNodeEdge {
|
|
1614
|
+
"""The item at the end of the edge"""
|
|
1615
|
+
node: ContactLogNode
|
|
1616
|
+
|
|
1617
|
+
"""A cursor for use in pagination"""
|
|
1618
|
+
cursor: String!
|
|
1619
|
+
}
|
|
1620
|
+
|
|
1621
|
+
type ContactLogNode implements Node {
|
|
1622
|
+
createdAt: DateTime!
|
|
1623
|
+
updatedAt: DateTime!
|
|
1624
|
+
createdBy: UserNode
|
|
1625
|
+
updatedBy: UserNode
|
|
1626
|
+
|
|
1627
|
+
"""The ID of the object"""
|
|
1628
|
+
id: ID!
|
|
1629
|
+
body: String!
|
|
1630
|
+
dateSent: DateTime!
|
|
1631
|
+
responseReceived: Boolean!
|
|
1632
|
+
messageType: MessageTemplateNode
|
|
1633
|
+
partner: UserNode
|
|
1634
|
+
email: String!
|
|
1635
|
+
client: UserNode
|
|
1636
|
+
}
|
|
1637
|
+
|
|
1638
|
+
type MarketingChannelNodeConnection {
|
|
1639
|
+
"""Pagination data for this connection."""
|
|
1640
|
+
pageInfo: PageInfo!
|
|
1641
|
+
|
|
1642
|
+
"""Contains the nodes in this connection."""
|
|
1643
|
+
edges: [MarketingChannelNodeEdge]!
|
|
1644
|
+
}
|
|
1645
|
+
|
|
1646
|
+
"""A Relay edge containing a `MarketingChannelNode` and its cursor."""
|
|
1647
|
+
type MarketingChannelNodeEdge {
|
|
1648
|
+
"""The item at the end of the edge"""
|
|
1649
|
+
node: MarketingChannelNode
|
|
1650
|
+
|
|
1651
|
+
"""A cursor for use in pagination"""
|
|
1652
|
+
cursor: String!
|
|
1653
|
+
}
|
|
1654
|
+
|
|
1655
|
+
type MarketingEmailLogNodeConnection {
|
|
1656
|
+
"""Pagination data for this connection."""
|
|
1657
|
+
pageInfo: PageInfo!
|
|
1658
|
+
|
|
1659
|
+
"""Contains the nodes in this connection."""
|
|
1660
|
+
edges: [MarketingEmailLogNodeEdge]!
|
|
1661
|
+
}
|
|
1662
|
+
|
|
1663
|
+
"""A Relay edge containing a `MarketingEmailLogNode` and its cursor."""
|
|
1664
|
+
type MarketingEmailLogNodeEdge {
|
|
1665
|
+
"""The item at the end of the edge"""
|
|
1666
|
+
node: MarketingEmailLogNode
|
|
1667
|
+
|
|
1668
|
+
"""A cursor for use in pagination"""
|
|
1669
|
+
cursor: String!
|
|
1670
|
+
}
|
|
1671
|
+
|
|
1672
|
+
type MarketingEmailLogNode implements Node {
|
|
1673
|
+
createdAt: DateTime!
|
|
1674
|
+
updatedAt: DateTime!
|
|
1675
|
+
|
|
1676
|
+
"""The ID of the object"""
|
|
1677
|
+
id: ID!
|
|
1678
|
+
objectId: String!
|
|
1679
|
+
recipient: UserNode!
|
|
1680
|
+
topic: MarketingMarketingEmailLogTopicChoices!
|
|
1681
|
+
}
|
|
1682
|
+
|
|
1683
|
+
"""An enumeration."""
|
|
1684
|
+
enum MarketingMarketingEmailLogTopicChoices {
|
|
1685
|
+
"""Task Feedback Ask"""
|
|
1686
|
+
TASK_FEEDBACK_ASK
|
|
1687
|
+
}
|
|
1688
|
+
|
|
1689
|
+
type SubscriptionNodeConnection {
|
|
1690
|
+
"""Pagination data for this connection."""
|
|
1691
|
+
pageInfo: PageInfo!
|
|
1692
|
+
|
|
1693
|
+
"""Contains the nodes in this connection."""
|
|
1694
|
+
edges: [SubscriptionNodeEdge]!
|
|
1695
|
+
}
|
|
1696
|
+
|
|
1697
|
+
"""A Relay edge containing a `SubscriptionNode` and its cursor."""
|
|
1698
|
+
type SubscriptionNodeEdge {
|
|
1699
|
+
"""The item at the end of the edge"""
|
|
1700
|
+
node: SubscriptionNode
|
|
1701
|
+
|
|
1702
|
+
"""A cursor for use in pagination"""
|
|
1703
|
+
cursor: String!
|
|
1704
|
+
}
|
|
1705
|
+
|
|
1706
|
+
type PromoCodeNodeConnection {
|
|
1707
|
+
"""Pagination data for this connection."""
|
|
1708
|
+
pageInfo: PageInfo!
|
|
1709
|
+
|
|
1710
|
+
"""Contains the nodes in this connection."""
|
|
1711
|
+
edges: [PromoCodeNodeEdge]!
|
|
1712
|
+
}
|
|
1713
|
+
|
|
1714
|
+
"""A Relay edge containing a `PromoCodeNode` and its cursor."""
|
|
1715
|
+
type PromoCodeNodeEdge {
|
|
1716
|
+
"""The item at the end of the edge"""
|
|
1717
|
+
node: PromoCodeNode
|
|
1718
|
+
|
|
1719
|
+
"""A cursor for use in pagination"""
|
|
1720
|
+
cursor: String!
|
|
1721
|
+
}
|
|
1722
|
+
|
|
1723
|
+
type PackageNodeConnection {
|
|
1724
|
+
"""Pagination data for this connection."""
|
|
1725
|
+
pageInfo: PageInfo!
|
|
1726
|
+
|
|
1727
|
+
"""Contains the nodes in this connection."""
|
|
1728
|
+
edges: [PackageNodeEdge]!
|
|
1729
|
+
}
|
|
1730
|
+
|
|
1731
|
+
"""A Relay edge containing a `PackageNode` and its cursor."""
|
|
1732
|
+
type PackageNodeEdge {
|
|
1733
|
+
"""The item at the end of the edge"""
|
|
1734
|
+
node: PackageNode
|
|
1735
|
+
|
|
1736
|
+
"""A cursor for use in pagination"""
|
|
1737
|
+
cursor: String!
|
|
1738
|
+
}
|
|
1739
|
+
|
|
1740
|
+
type PackageNode implements Node {
|
|
1741
|
+
createdAt: DateTime!
|
|
1742
|
+
updatedAt: DateTime!
|
|
1743
|
+
createdBy: UserNode
|
|
1744
|
+
updatedBy: UserNode
|
|
1745
|
+
|
|
1746
|
+
"""The ID of the object"""
|
|
1747
|
+
id: ID!
|
|
1748
|
+
label: String!
|
|
1749
|
+
|
|
1750
|
+
""""""
|
|
1751
|
+
hourlyRate: Decimal!
|
|
1752
|
+
flatHours: Int!
|
|
1753
|
+
}
|
|
1754
|
+
|
|
1755
|
+
type DiscountNodeConnection {
|
|
1756
|
+
"""Pagination data for this connection."""
|
|
1757
|
+
pageInfo: PageInfo!
|
|
1758
|
+
|
|
1759
|
+
"""Contains the nodes in this connection."""
|
|
1760
|
+
edges: [DiscountNodeEdge]!
|
|
1761
|
+
}
|
|
1762
|
+
|
|
1763
|
+
"""A Relay edge containing a `DiscountNode` and its cursor."""
|
|
1764
|
+
type DiscountNodeEdge {
|
|
1765
|
+
"""The item at the end of the edge"""
|
|
1766
|
+
node: DiscountNode
|
|
1767
|
+
|
|
1768
|
+
"""A cursor for use in pagination"""
|
|
1769
|
+
cursor: String!
|
|
1770
|
+
}
|
|
1771
|
+
|
|
1772
|
+
type DiscountNode implements Node {
|
|
1773
|
+
createdAt: DateTime!
|
|
1774
|
+
updatedAt: DateTime!
|
|
1775
|
+
createdBy: UserNode
|
|
1776
|
+
updatedBy: UserNode
|
|
1777
|
+
|
|
1778
|
+
"""The ID of the object"""
|
|
1779
|
+
id: ID!
|
|
1780
|
+
label: String!
|
|
1781
|
+
code: String!
|
|
1782
|
+
|
|
1783
|
+
""""""
|
|
1784
|
+
percentageValue: Decimal!
|
|
1785
|
+
duration: Int!
|
|
1786
|
+
expiresOn: DateTime!
|
|
1787
|
+
usageCount: Int!
|
|
1788
|
+
}
|
|
1789
|
+
|
|
1790
|
+
"""
|
|
1791
|
+
Leverages the internal Python implementation of UUID (uuid.UUID) to provide native UUID objects
|
|
1792
|
+
in fields, resolvers and input.
|
|
1793
|
+
"""
|
|
1794
|
+
scalar UUID
|
|
1795
|
+
|
|
1796
|
+
type TaskReviewNodeConnection {
|
|
1797
|
+
"""Pagination data for this connection."""
|
|
1798
|
+
pageInfo: PageInfo!
|
|
1799
|
+
|
|
1800
|
+
"""Contains the nodes in this connection."""
|
|
1801
|
+
edges: [TaskReviewNodeEdge]!
|
|
1802
|
+
}
|
|
1803
|
+
|
|
1804
|
+
"""A Relay edge containing a `TaskReviewNode` and its cursor."""
|
|
1805
|
+
type TaskReviewNodeEdge {
|
|
1806
|
+
"""The item at the end of the edge"""
|
|
1807
|
+
node: TaskReviewNode
|
|
1808
|
+
|
|
1809
|
+
"""A cursor for use in pagination"""
|
|
1810
|
+
cursor: String!
|
|
1811
|
+
}
|
|
1812
|
+
|
|
1813
|
+
input UserInput {
|
|
1814
|
+
userId: UUID!
|
|
1815
|
+
survey: String!
|
|
1816
|
+
}
|
|
1817
|
+
|
|
1818
|
+
type BlogCategoryNodeConnection {
|
|
1819
|
+
"""Pagination data for this connection."""
|
|
1820
|
+
pageInfo: PageInfo!
|
|
1821
|
+
|
|
1822
|
+
"""Contains the nodes in this connection."""
|
|
1823
|
+
edges: [BlogCategoryNodeEdge]!
|
|
1824
|
+
}
|
|
1825
|
+
|
|
1826
|
+
"""A Relay edge containing a `BlogCategoryNode` and its cursor."""
|
|
1827
|
+
type BlogCategoryNodeEdge {
|
|
1828
|
+
"""The item at the end of the edge"""
|
|
1829
|
+
node: BlogCategoryNode
|
|
1830
|
+
|
|
1831
|
+
"""A cursor for use in pagination"""
|
|
1832
|
+
cursor: String!
|
|
1833
|
+
}
|
|
1834
|
+
|
|
1835
|
+
type BlogPostNode implements Node {
|
|
1836
|
+
createdAt: DateTime!
|
|
1837
|
+
updatedAt: DateTime!
|
|
1838
|
+
|
|
1839
|
+
"""The ID of the object"""
|
|
1840
|
+
id: ID!
|
|
1841
|
+
title: String
|
|
1842
|
+
slug: String!
|
|
1843
|
+
seoTitleTag: String
|
|
1844
|
+
seoMetaDescription: String
|
|
1845
|
+
description: String
|
|
1846
|
+
content: String
|
|
1847
|
+
mainImage: String
|
|
1848
|
+
author: UserNode
|
|
1849
|
+
category: BlogCategoryNode
|
|
1850
|
+
itemType: BlogBlogPostItemTypeChoices!
|
|
1851
|
+
wordCount: Int
|
|
1852
|
+
publishedOn: DateTime
|
|
1853
|
+
relatedArticles(offset: Int = null, before: String = null, after: String = null, first: Int = null, last: Int = null, category_Slug: String = null): PublicBlogPostNodeConnection!
|
|
1854
|
+
ctaText: String
|
|
1855
|
+
color: String
|
|
1856
|
+
}
|
|
1857
|
+
|
|
1858
|
+
type BlogPostNodeConnection {
|
|
1859
|
+
"""Pagination data for this connection."""
|
|
1860
|
+
pageInfo: PageInfo!
|
|
1861
|
+
|
|
1862
|
+
"""Contains the nodes in this connection."""
|
|
1863
|
+
edges: [BlogPostNodeEdge]!
|
|
1864
|
+
}
|
|
1865
|
+
|
|
1866
|
+
"""A Relay edge containing a `BlogPostNode` and its cursor."""
|
|
1867
|
+
type BlogPostNodeEdge {
|
|
1868
|
+
"""The item at the end of the edge"""
|
|
1869
|
+
node: BlogPostNode
|
|
1870
|
+
|
|
1871
|
+
"""A cursor for use in pagination"""
|
|
1872
|
+
cursor: String!
|
|
1873
|
+
}
|
|
1874
|
+
|
|
1875
|
+
type OAuth2LinksProvider {
|
|
1876
|
+
"""Login link for google authentication"""
|
|
1877
|
+
google: String!
|
|
1878
|
+
}
|
|
1879
|
+
|
|
1880
|
+
type Mutation {
|
|
1881
|
+
insertTask(input: CreateTaskMutationInput!): CreateTaskMutationPayload
|
|
1882
|
+
updateTask(input: UpdateTaskMutationInput!): UpdateTaskMutationPayload
|
|
1883
|
+
deleteTask(input: UUIDInput!): UUID
|
|
1884
|
+
insertTaskStatus(input: CreateTaskStatusMutationInput!): CreateTaskStatusMutationPayload
|
|
1885
|
+
updateTaskStatus(input: UpdateTaskStatusMutationInput!): UpdateTaskStatusMutationPayload
|
|
1886
|
+
deleteTaskStatus(input: UUIDInput!): UUID
|
|
1887
|
+
insertTaskExpense(input: CreateTaskExpenseMutationInput!): CreateTaskExpenseMutationPayload
|
|
1888
|
+
updateTaskExpense(input: UpdateTaskExpenseMutationInput!): UpdateTaskExpenseMutationPayload
|
|
1889
|
+
deleteTaskExpense(input: UUIDInput!): UUID
|
|
1890
|
+
insertTaskFeedback(input: CreateTaskFeedbackMutationInput!): CreateTaskFeedbackMutationPayload
|
|
1891
|
+
updateTaskFeedback(input: UpdateTaskFeedbackMutationInput!): UpdateTaskFeedbackMutationPayload
|
|
1892
|
+
deleteTaskFeedback(input: UUIDInput!): UUID
|
|
1893
|
+
insertTaskInterest(input: CreateTaskInterestMutationInput!): CreateTaskInterestMutationPayload
|
|
1894
|
+
updateTaskInterest(input: UpdateTaskInterestMutationInput!): UpdateTaskInterestMutationPayload
|
|
1895
|
+
deleteTaskInterest(input: UUIDInput!): UUID
|
|
1896
|
+
insertTaskType(input: CreateTaskTypeMutationInput!): CreateTaskTypeMutationPayload
|
|
1897
|
+
updateTaskType(input: UpdateTaskTypeMutationInput!): UpdateTaskTypeMutationPayload
|
|
1898
|
+
deleteTaskType(input: UUIDInput!): UUID
|
|
1899
|
+
insertTaskFile(input: CreateTaskFileMutationInput!): CreateTaskFileMutationPayload
|
|
1900
|
+
updateTaskFile(input: UpdateTaskFileMutationInput!): UpdateTaskFileMutationPayload
|
|
1901
|
+
deleteTaskFile(input: UUIDInput!): UUID
|
|
1902
|
+
insertTaskReview(input: CreateTaskReviewMutationInput!): CreateTaskReviewMutationPayload
|
|
1903
|
+
updateTaskReview(input: UpdateTaskReviewMutationInput!): UpdateTaskReviewMutationPayload
|
|
1904
|
+
deleteTaskReview(input: UUIDInput!): UUID
|
|
1905
|
+
upsertTaskReview(taskId: UUID!, input: UpsertTaskReviewInput!): TaskReviewNode
|
|
1906
|
+
insertUserEmailList(input: EmailListUserInput!): UUID
|
|
1907
|
+
insertEmailList(input: CreateEmailListMutationInput!): CreateEmailListMutationPayload
|
|
1908
|
+
updateEmailList(input: UpdateEmailListMutationInput!): UpdateEmailListMutationPayload
|
|
1909
|
+
deleteEmailList(input: UUIDInput!): UUID
|
|
1910
|
+
insertMessageTemplate(input: CreateMessageTemplateMutationInput!): CreateMessageTemplateMutationPayload
|
|
1911
|
+
updateMessageTemplate(input: UpdateMessageTemplateMutationInput!): UpdateMessageTemplateMutationPayload
|
|
1912
|
+
deleteMessageTemplate(input: UUIDInput!): UUID
|
|
1913
|
+
insertMarketingChannel(input: CreateMarketingChannelMutationInput!): CreateMarketingChannelMutationPayload
|
|
1914
|
+
updateMarketingChannel(input: UpdateMarketingChannelMutationInput!): UpdateMarketingChannelMutationPayload
|
|
1915
|
+
deleteMarketingChannel(input: UUIDInput!): UUID
|
|
1916
|
+
insertContactLog(input: CreateContactLogMutationInput!): CreateContactLogMutationPayload
|
|
1917
|
+
updateContactLog(input: UpdateContactLogMutationInput!): UpdateContactLogMutationPayload
|
|
1918
|
+
deleteContactLog(input: UUIDInput!): UUID
|
|
1919
|
+
insertUserTestimonial(input: CreateUserTestimonialMutationInput!): CreateUserTestimonialMutationPayload
|
|
1920
|
+
updateUserTestimonial(input: UpdateUserTestimonialMutationInput!): UpdateUserTestimonialMutationPayload
|
|
1921
|
+
deleteUserTestimonial(input: UUIDInput!): UUID
|
|
1922
|
+
insertUserLead(input: CreateUserLeadMutationInput!): CreateUserLeadMutationPayload
|
|
1923
|
+
updateUserLead(input: UpdateUserLeadMutationInput!): UpdateUserLeadMutationPayload
|
|
1924
|
+
deleteUserLead(input: UUIDInput!): UUID
|
|
1925
|
+
insertMarketingEmailLog(input: CreateMarketingEmailLogMutationInput!): CreateMarketingEmailLogMutationPayload
|
|
1926
|
+
updateMarketingEmailLog(input: UpdateMarketingEmailLogMutationInput!): UpdateMarketingEmailLogMutationPayload
|
|
1927
|
+
deleteMarketingEmailLog(input: UUIDInput!): UUID
|
|
1928
|
+
createPromoCode(input: CreatePromoCodeMutationInput!): CreatePromoCodeMutationPayload
|
|
1929
|
+
updatePromoCode(input: UpdatePromoCodeMutationInput!): UpdatePromoCodeMutationPayload
|
|
1930
|
+
deletePromoCode(input: UUIDInput!): UUID
|
|
1931
|
+
createSubscription(input: CreateSubscriptionMutationInput!): CreateSubscriptionMutationPayload
|
|
1932
|
+
updateSubscription(input: UpdateSubscriptionMutationInput!): UpdateSubscriptionMutationPayload
|
|
1933
|
+
deleteSubscription(input: UUIDInput!): UUID
|
|
1934
|
+
createPackage(input: CreatePackageMutationInput!): CreatePackageMutationPayload
|
|
1935
|
+
updatePackage(input: UpdatePackageMutationInput!): UpdatePackageMutationPayload
|
|
1936
|
+
deletePackage(input: UUIDInput!): UUID
|
|
1937
|
+
createWorkHours(input: CreateWorkHoursMutationInput!): CreateWorkHoursMutationPayload
|
|
1938
|
+
updateWorkHours(input: UpdateWorkHoursMutationInput!): UpdateWorkHoursMutationPayload
|
|
1939
|
+
deleteWorkHours(input: UUIDInput!): UUID
|
|
1940
|
+
markWorkHours(input: MarkWorkHoursInput!): Int
|
|
1941
|
+
startWorkHour(input: StartWorkHoursFiltersInput!): UUID
|
|
1942
|
+
endWorkHour(id: UUID!): Int
|
|
1943
|
+
deleteUserWorkHour(id: UUID!): Int
|
|
1944
|
+
createDiscount(input: CreateDiscountMutationInput!): CreateDiscountMutationPayload
|
|
1945
|
+
updateDiscount(input: UpdateDiscountMutationInput!): UpdateDiscountMutationPayload
|
|
1946
|
+
deleteDiscount(input: UUIDInput!): UUID
|
|
1947
|
+
createMenuItem(input: CreateMenuItemMutationInput!): CreateMenuItemMutationPayload
|
|
1948
|
+
updateMenuItem(input: UpdateMenuItemMutationInput!): UpdateMenuItemMutationPayload
|
|
1949
|
+
createInvoice(input: CreateInvoiceMutationInput!): CreateInvoiceMutationPayload
|
|
1950
|
+
updateInvoice(input: UpdateInvoiceMutationInput!): UpdateInvoiceMutationPayload
|
|
1951
|
+
passwordAuth(input: PasswordAuthInput!): PasswordAuthPayload
|
|
1952
|
+
codeExchangeAuth(input: CodeExchangeAuthInput!): CodeExchangeAuthPayload
|
|
1953
|
+
magicLinkAuth(input: MagicLinkAuthInput!): MagicLinkAuthPayload
|
|
1954
|
+
googleAccessTokenAuth(input: GoogleAccessTokenAuthInput!): GoogleAccessTokenAuthPayload
|
|
1955
|
+
verifyToken(input: VerifyInput!): VerifyPayload
|
|
1956
|
+
refreshToken(input: RefreshInput!): RefreshPayload
|
|
1957
|
+
deleteTokenCookie(input: DeleteJSONWebTokenCookieInput!): DeleteJSONWebTokenCookiePayload
|
|
1958
|
+
deleteRefreshTokenCookie(input: DeleteRefreshTokenCookieInput!): DeleteRefreshTokenCookiePayload
|
|
1959
|
+
revokeToken(input: RevokeInput!): RevokePayload
|
|
1960
|
+
createClient(input: CreateClientInput!): CreateClientPayload
|
|
1961
|
+
updateClient(input: UpdateClientInput!): UpdateClientPayload
|
|
1962
|
+
deleteUser(input: UUIDInput!): UUID
|
|
1963
|
+
createTeam(input: CreateTeamMutationInput!): CreateTeamMutationPayload
|
|
1964
|
+
updateTeam(input: UpdateTeamMutationInput!): UpdateTeamMutationPayload
|
|
1965
|
+
deleteTeam(input: UUIDInput!): UUID
|
|
1966
|
+
insertUserTeam(input: UserTeamInput!): UUID
|
|
1967
|
+
deleteUserTeam(input: DeleteUserTeamInput!): UUID
|
|
1968
|
+
createStage(input: CreateStageMutationInput!): CreateStageMutationPayload
|
|
1969
|
+
updateStage(input: UpdateStageMutationInput!): UpdateStageMutationPayload
|
|
1970
|
+
deleteStage(input: UUIDInput!): UUID
|
|
1971
|
+
createIndustry(input: CreateIndustryMutationInput!): CreateIndustryMutationPayload
|
|
1972
|
+
updateIndustry(input: UpdateIndustryMutationInput!): UpdateIndustryMutationPayload
|
|
1973
|
+
deleteIndustry(input: DeleteIndustryMutationInput!): DeleteIndustryMutationPayload
|
|
1974
|
+
addUserNote(input: CreateUserNoteMutationInput!): CreateUserNoteMutationPayload
|
|
1975
|
+
updateUserNote(input: UpdateUserNoteMutationInput!): UpdateUserNoteMutationPayload
|
|
1976
|
+
deleteUserNote(input: UUIDInput!): UUID
|
|
1977
|
+
createUserFeedback(input: CreateUserFeedbackMutationInput!): CreateUserFeedbackMutationPayload
|
|
1978
|
+
updateUserFeedback(input: UpdateUserFeedbackMutationInput!): UpdateUserFeedbackMutationPayload
|
|
1979
|
+
deleteUserFeedback(input: UUIDInput!): UUID
|
|
1980
|
+
upsertUserSurvey(input: UpsertUserSurveyMutationInput!): UpsertUserSurveyMutationPayload
|
|
1981
|
+
}
|
|
1982
|
+
|
|
1983
|
+
type CreateTaskMutationPayload {
|
|
1984
|
+
id: String
|
|
1985
|
+
associates: [String]
|
|
1986
|
+
createdAt: DateTime
|
|
1987
|
+
updatedAt: DateTime
|
|
1988
|
+
description: String
|
|
1989
|
+
dueDate: DateTime
|
|
1990
|
+
links: String
|
|
1991
|
+
repeat: Boolean
|
|
1992
|
+
repeatDetails: JSONString
|
|
1993
|
+
version: Float
|
|
1994
|
+
completedAt: DateTime
|
|
1995
|
+
title: String
|
|
1996
|
+
timecap: Float
|
|
1997
|
+
requestDate: DateTime
|
|
1998
|
+
completionDate: DateTime
|
|
1999
|
+
urgent: Boolean
|
|
2000
|
+
evening: Boolean
|
|
2001
|
+
weekend: Boolean
|
|
2002
|
+
isPublic: Boolean
|
|
2003
|
+
query: String
|
|
2004
|
+
userTeamIndex: Float
|
|
2005
|
+
dataSpreadsheet: String
|
|
2006
|
+
dataCategory: String
|
|
2007
|
+
dataCategoryNotes: String
|
|
2008
|
+
dataSolution: data_solution
|
|
2009
|
+
dataTargetSources: JSONString
|
|
2010
|
+
dataTargetFilters: JSONString
|
|
2011
|
+
dataTargetColumns: JSONString
|
|
2012
|
+
dataTargetQuantity: Int
|
|
2013
|
+
qaProcess: String
|
|
2014
|
+
qaSampleSize: Int
|
|
2015
|
+
qaTargetPercentage: Float
|
|
2016
|
+
deliveryInstructions: String
|
|
2017
|
+
deliveryTargetChannels: JSONString
|
|
2018
|
+
billingStatus: billing_status
|
|
2019
|
+
indexByTeam: Int
|
|
2020
|
+
indexByRequester: Int
|
|
2021
|
+
createdBy: String
|
|
2022
|
+
updatedBy: String
|
|
2023
|
+
requester: String
|
|
2024
|
+
userTeam: String
|
|
2025
|
+
manager: String
|
|
2026
|
+
type: String
|
|
2027
|
+
status: String
|
|
2028
|
+
subTasks: String
|
|
2029
|
+
menuItems: String
|
|
2030
|
+
|
|
2031
|
+
"""May contain more than one error for same field."""
|
|
2032
|
+
errors: [ErrorType]
|
|
2033
|
+
clientMutationId: String
|
|
2034
|
+
}
|
|
2035
|
+
|
|
2036
|
+
"""An enumeration."""
|
|
2037
|
+
enum data_solution {
|
|
2038
|
+
"""Lead Generation"""
|
|
2039
|
+
LG
|
|
2040
|
+
|
|
2041
|
+
"""Competitive Research"""
|
|
2042
|
+
CR
|
|
2043
|
+
|
|
2044
|
+
"""Investors Lookup"""
|
|
2045
|
+
IL
|
|
2046
|
+
|
|
2047
|
+
"""Marketing Lookup"""
|
|
2048
|
+
ML
|
|
2049
|
+
|
|
2050
|
+
"""Other"""
|
|
2051
|
+
OT
|
|
2052
|
+
}
|
|
2053
|
+
|
|
2054
|
+
"""An enumeration."""
|
|
2055
|
+
enum billing_status {
|
|
2056
|
+
"""Estimated"""
|
|
2057
|
+
EST
|
|
2058
|
+
|
|
2059
|
+
"""Invoiced"""
|
|
2060
|
+
INV
|
|
2061
|
+
|
|
2062
|
+
"""Paid"""
|
|
2063
|
+
PAD
|
|
2064
|
+
|
|
2065
|
+
"""Voided"""
|
|
2066
|
+
VOI
|
|
2067
|
+
|
|
2068
|
+
"""Other"""
|
|
2069
|
+
OT
|
|
2070
|
+
}
|
|
2071
|
+
|
|
2072
|
+
type ErrorType {
|
|
2073
|
+
field: String!
|
|
2074
|
+
messages: [String!]!
|
|
2075
|
+
}
|
|
2076
|
+
|
|
2077
|
+
input CreateTaskMutationInput {
|
|
2078
|
+
id: String
|
|
2079
|
+
associates: [String]
|
|
2080
|
+
description: String
|
|
2081
|
+
dueDate: DateTime!
|
|
2082
|
+
links: String
|
|
2083
|
+
repeat: Boolean
|
|
2084
|
+
repeatDetails: JSONString!
|
|
2085
|
+
version: Float
|
|
2086
|
+
completedAt: DateTime
|
|
2087
|
+
title: String!
|
|
2088
|
+
timecap: Float
|
|
2089
|
+
requestDate: DateTime!
|
|
2090
|
+
completionDate: DateTime
|
|
2091
|
+
urgent: Boolean
|
|
2092
|
+
evening: Boolean
|
|
2093
|
+
weekend: Boolean
|
|
2094
|
+
isPublic: Boolean
|
|
2095
|
+
query: String
|
|
2096
|
+
userTeamIndex: Float
|
|
2097
|
+
dataSpreadsheet: String
|
|
2098
|
+
dataCategory: String
|
|
2099
|
+
dataCategoryNotes: String
|
|
2100
|
+
dataSolution: data_solution
|
|
2101
|
+
dataTargetSources: JSONString
|
|
2102
|
+
dataTargetFilters: JSONString
|
|
2103
|
+
dataTargetColumns: JSONString
|
|
2104
|
+
dataTargetQuantity: Int
|
|
2105
|
+
qaProcess: String
|
|
2106
|
+
qaSampleSize: Int
|
|
2107
|
+
qaTargetPercentage: Float
|
|
2108
|
+
deliveryInstructions: String
|
|
2109
|
+
deliveryTargetChannels: JSONString
|
|
2110
|
+
billingStatus: billing_status
|
|
2111
|
+
indexByTeam: Int
|
|
2112
|
+
indexByRequester: Int
|
|
2113
|
+
requester: String
|
|
2114
|
+
userTeam: String
|
|
2115
|
+
manager: String
|
|
2116
|
+
type: String
|
|
2117
|
+
status: String
|
|
2118
|
+
subTasks: String
|
|
2119
|
+
clientMutationId: String
|
|
2120
|
+
}
|
|
2121
|
+
|
|
2122
|
+
type UpdateTaskMutationPayload {
|
|
2123
|
+
id: String
|
|
2124
|
+
associates: [String]
|
|
2125
|
+
createdAt: DateTime
|
|
2126
|
+
updatedAt: DateTime
|
|
2127
|
+
description: String
|
|
2128
|
+
dueDate: DateTime
|
|
2129
|
+
links: String
|
|
2130
|
+
repeat: Boolean
|
|
2131
|
+
repeatDetails: JSONString
|
|
2132
|
+
version: Float
|
|
2133
|
+
completedAt: DateTime
|
|
2134
|
+
title: String
|
|
2135
|
+
timecap: Float
|
|
2136
|
+
requestDate: DateTime
|
|
2137
|
+
completionDate: DateTime
|
|
2138
|
+
urgent: Boolean
|
|
2139
|
+
evening: Boolean
|
|
2140
|
+
weekend: Boolean
|
|
2141
|
+
isPublic: Boolean
|
|
2142
|
+
query: String
|
|
2143
|
+
userTeamIndex: Float
|
|
2144
|
+
dataSpreadsheet: String
|
|
2145
|
+
dataCategory: String
|
|
2146
|
+
dataCategoryNotes: String
|
|
2147
|
+
dataSolution: data_solution
|
|
2148
|
+
dataTargetSources: JSONString
|
|
2149
|
+
dataTargetFilters: JSONString
|
|
2150
|
+
dataTargetColumns: JSONString
|
|
2151
|
+
dataTargetQuantity: Int
|
|
2152
|
+
qaProcess: String
|
|
2153
|
+
qaSampleSize: Int
|
|
2154
|
+
qaTargetPercentage: Float
|
|
2155
|
+
deliveryInstructions: String
|
|
2156
|
+
deliveryTargetChannels: JSONString
|
|
2157
|
+
billingStatus: billing_status
|
|
2158
|
+
indexByTeam: Int
|
|
2159
|
+
indexByRequester: Int
|
|
2160
|
+
createdBy: String
|
|
2161
|
+
updatedBy: String
|
|
2162
|
+
requester: String
|
|
2163
|
+
userTeam: String
|
|
2164
|
+
manager: String
|
|
2165
|
+
type: String
|
|
2166
|
+
status: String
|
|
2167
|
+
subTasks: String
|
|
2168
|
+
menuItems: String
|
|
2169
|
+
|
|
2170
|
+
"""May contain more than one error for same field."""
|
|
2171
|
+
errors: [ErrorType]
|
|
2172
|
+
clientMutationId: String
|
|
2173
|
+
}
|
|
2174
|
+
|
|
2175
|
+
input UpdateTaskMutationInput {
|
|
2176
|
+
id: String
|
|
2177
|
+
associates: [String]
|
|
2178
|
+
description: String
|
|
2179
|
+
dueDate: DateTime
|
|
2180
|
+
links: String
|
|
2181
|
+
repeat: Boolean
|
|
2182
|
+
repeatDetails: JSONString
|
|
2183
|
+
version: Float
|
|
2184
|
+
completedAt: DateTime
|
|
2185
|
+
title: String
|
|
2186
|
+
timecap: Float
|
|
2187
|
+
requestDate: DateTime
|
|
2188
|
+
completionDate: DateTime
|
|
2189
|
+
urgent: Boolean
|
|
2190
|
+
evening: Boolean
|
|
2191
|
+
weekend: Boolean
|
|
2192
|
+
isPublic: Boolean
|
|
2193
|
+
query: String
|
|
2194
|
+
userTeamIndex: Float
|
|
2195
|
+
dataSpreadsheet: String
|
|
2196
|
+
dataCategory: String
|
|
2197
|
+
dataCategoryNotes: String
|
|
2198
|
+
dataSolution: data_solution
|
|
2199
|
+
dataTargetSources: JSONString
|
|
2200
|
+
dataTargetFilters: JSONString
|
|
2201
|
+
dataTargetColumns: JSONString
|
|
2202
|
+
dataTargetQuantity: Int
|
|
2203
|
+
qaProcess: String
|
|
2204
|
+
qaSampleSize: Int
|
|
2205
|
+
qaTargetPercentage: Float
|
|
2206
|
+
deliveryInstructions: String
|
|
2207
|
+
deliveryTargetChannels: JSONString
|
|
2208
|
+
billingStatus: billing_status
|
|
2209
|
+
indexByTeam: Int
|
|
2210
|
+
indexByRequester: Int
|
|
2211
|
+
requester: String
|
|
2212
|
+
userTeam: String
|
|
2213
|
+
manager: String
|
|
2214
|
+
type: String
|
|
2215
|
+
status: String
|
|
2216
|
+
subTasks: String
|
|
2217
|
+
clientMutationId: String
|
|
2218
|
+
}
|
|
2219
|
+
|
|
2220
|
+
input UUIDInput {
|
|
2221
|
+
id: UUID!
|
|
2222
|
+
}
|
|
2223
|
+
|
|
2224
|
+
type CreateTaskStatusMutationPayload {
|
|
2225
|
+
id: String
|
|
2226
|
+
createdAt: DateTime
|
|
2227
|
+
updatedAt: DateTime
|
|
2228
|
+
status: String
|
|
2229
|
+
labelColor: String
|
|
2230
|
+
createdBy: String
|
|
2231
|
+
updatedBy: String
|
|
2232
|
+
|
|
2233
|
+
"""May contain more than one error for same field."""
|
|
2234
|
+
errors: [ErrorType]
|
|
2235
|
+
clientMutationId: String
|
|
2236
|
+
}
|
|
2237
|
+
|
|
2238
|
+
input CreateTaskStatusMutationInput {
|
|
2239
|
+
id: String
|
|
2240
|
+
status: String!
|
|
2241
|
+
labelColor: String
|
|
2242
|
+
clientMutationId: String
|
|
2243
|
+
}
|
|
2244
|
+
|
|
2245
|
+
type UpdateTaskStatusMutationPayload {
|
|
2246
|
+
id: String
|
|
2247
|
+
createdAt: DateTime
|
|
2248
|
+
updatedAt: DateTime
|
|
2249
|
+
status: String
|
|
2250
|
+
labelColor: String
|
|
2251
|
+
createdBy: String
|
|
2252
|
+
updatedBy: String
|
|
2253
|
+
|
|
2254
|
+
"""May contain more than one error for same field."""
|
|
2255
|
+
errors: [ErrorType]
|
|
2256
|
+
clientMutationId: String
|
|
2257
|
+
}
|
|
2258
|
+
|
|
2259
|
+
input UpdateTaskStatusMutationInput {
|
|
2260
|
+
id: String
|
|
2261
|
+
status: String
|
|
2262
|
+
labelColor: String
|
|
2263
|
+
clientMutationId: String
|
|
2264
|
+
}
|
|
2265
|
+
|
|
2266
|
+
type CreateTaskExpenseMutationPayload {
|
|
2267
|
+
id: String
|
|
2268
|
+
createdAt: DateTime
|
|
2269
|
+
updatedAt: DateTime
|
|
2270
|
+
expenseItem: String
|
|
2271
|
+
cost: Float
|
|
2272
|
+
receiptLink: String
|
|
2273
|
+
sentInvoice: Boolean
|
|
2274
|
+
createdBy: String
|
|
2275
|
+
updatedBy: String
|
|
2276
|
+
task: String
|
|
2277
|
+
|
|
2278
|
+
"""May contain more than one error for same field."""
|
|
2279
|
+
errors: [ErrorType]
|
|
2280
|
+
clientMutationId: String
|
|
2281
|
+
}
|
|
2282
|
+
|
|
2283
|
+
input CreateTaskExpenseMutationInput {
|
|
2284
|
+
id: String
|
|
2285
|
+
expenseItem: String!
|
|
2286
|
+
cost: Float
|
|
2287
|
+
receiptLink: String!
|
|
2288
|
+
sentInvoice: Boolean
|
|
2289
|
+
task: String
|
|
2290
|
+
clientMutationId: String
|
|
2291
|
+
}
|
|
2292
|
+
|
|
2293
|
+
type UpdateTaskExpenseMutationPayload {
|
|
2294
|
+
id: String
|
|
2295
|
+
createdAt: DateTime
|
|
2296
|
+
updatedAt: DateTime
|
|
2297
|
+
expenseItem: String
|
|
2298
|
+
cost: Float
|
|
2299
|
+
receiptLink: String
|
|
2300
|
+
sentInvoice: Boolean
|
|
2301
|
+
createdBy: String
|
|
2302
|
+
updatedBy: String
|
|
2303
|
+
task: String
|
|
2304
|
+
|
|
2305
|
+
"""May contain more than one error for same field."""
|
|
2306
|
+
errors: [ErrorType]
|
|
2307
|
+
clientMutationId: String
|
|
2308
|
+
}
|
|
2309
|
+
|
|
2310
|
+
input UpdateTaskExpenseMutationInput {
|
|
2311
|
+
id: String
|
|
2312
|
+
expenseItem: String
|
|
2313
|
+
cost: Float
|
|
2314
|
+
receiptLink: String
|
|
2315
|
+
sentInvoice: Boolean
|
|
2316
|
+
task: String
|
|
2317
|
+
clientMutationId: String
|
|
2318
|
+
}
|
|
2319
|
+
|
|
2320
|
+
type CreateTaskFeedbackMutationPayload {
|
|
2321
|
+
id: String
|
|
2322
|
+
createdAt: DateTime
|
|
2323
|
+
updatedAt: DateTime
|
|
2324
|
+
question: JSONString
|
|
2325
|
+
answer: JSONString
|
|
2326
|
+
comment: JSONString
|
|
2327
|
+
createdBy: String
|
|
2328
|
+
updatedBy: String
|
|
2329
|
+
giver: String
|
|
2330
|
+
receiver: String
|
|
2331
|
+
task: String
|
|
2332
|
+
|
|
2333
|
+
"""May contain more than one error for same field."""
|
|
2334
|
+
errors: [ErrorType]
|
|
2335
|
+
clientMutationId: String
|
|
2336
|
+
}
|
|
2337
|
+
|
|
2338
|
+
input CreateTaskFeedbackMutationInput {
|
|
2339
|
+
id: String
|
|
2340
|
+
question: JSONString!
|
|
2341
|
+
answer: JSONString
|
|
2342
|
+
comment: JSONString
|
|
2343
|
+
giver: String
|
|
2344
|
+
receiver: String
|
|
2345
|
+
task: String
|
|
2346
|
+
clientMutationId: String
|
|
2347
|
+
}
|
|
2348
|
+
|
|
2349
|
+
type UpdateTaskFeedbackMutationPayload {
|
|
2350
|
+
id: String
|
|
2351
|
+
createdAt: DateTime
|
|
2352
|
+
updatedAt: DateTime
|
|
2353
|
+
question: JSONString
|
|
2354
|
+
answer: JSONString
|
|
2355
|
+
comment: JSONString
|
|
2356
|
+
createdBy: String
|
|
2357
|
+
updatedBy: String
|
|
2358
|
+
giver: String
|
|
2359
|
+
receiver: String
|
|
2360
|
+
task: String
|
|
2361
|
+
|
|
2362
|
+
"""May contain more than one error for same field."""
|
|
2363
|
+
errors: [ErrorType]
|
|
2364
|
+
clientMutationId: String
|
|
2365
|
+
}
|
|
2366
|
+
|
|
2367
|
+
input UpdateTaskFeedbackMutationInput {
|
|
2368
|
+
id: String
|
|
2369
|
+
question: JSONString
|
|
2370
|
+
answer: JSONString
|
|
2371
|
+
comment: JSONString
|
|
2372
|
+
giver: String
|
|
2373
|
+
receiver: String
|
|
2374
|
+
task: String
|
|
2375
|
+
clientMutationId: String
|
|
2376
|
+
}
|
|
2377
|
+
|
|
2378
|
+
type CreateTaskInterestMutationPayload {
|
|
2379
|
+
id: String
|
|
2380
|
+
createdAt: DateTime
|
|
2381
|
+
updatedAt: DateTime
|
|
2382
|
+
label: String
|
|
2383
|
+
description: String
|
|
2384
|
+
hubspotLabel: String
|
|
2385
|
+
users: String
|
|
2386
|
+
|
|
2387
|
+
"""May contain more than one error for same field."""
|
|
2388
|
+
errors: [ErrorType]
|
|
2389
|
+
clientMutationId: String
|
|
2390
|
+
}
|
|
2391
|
+
|
|
2392
|
+
input CreateTaskInterestMutationInput {
|
|
2393
|
+
id: String
|
|
2394
|
+
label: String!
|
|
2395
|
+
description: String
|
|
2396
|
+
hubspotLabel: String
|
|
2397
|
+
users: String
|
|
2398
|
+
clientMutationId: String
|
|
2399
|
+
}
|
|
2400
|
+
|
|
2401
|
+
type UpdateTaskInterestMutationPayload {
|
|
2402
|
+
id: String
|
|
2403
|
+
createdAt: DateTime
|
|
2404
|
+
updatedAt: DateTime
|
|
2405
|
+
label: String
|
|
2406
|
+
description: String
|
|
2407
|
+
hubspotLabel: String
|
|
2408
|
+
users: String
|
|
2409
|
+
|
|
2410
|
+
"""May contain more than one error for same field."""
|
|
2411
|
+
errors: [ErrorType]
|
|
2412
|
+
clientMutationId: String
|
|
2413
|
+
}
|
|
2414
|
+
|
|
2415
|
+
input UpdateTaskInterestMutationInput {
|
|
2416
|
+
id: String
|
|
2417
|
+
label: String
|
|
2418
|
+
description: String
|
|
2419
|
+
hubspotLabel: String
|
|
2420
|
+
users: String
|
|
2421
|
+
clientMutationId: String
|
|
2422
|
+
}
|
|
2423
|
+
|
|
2424
|
+
type CreateTaskTypeMutationPayload {
|
|
2425
|
+
id: String
|
|
2426
|
+
createdAt: DateTime
|
|
2427
|
+
updatedAt: DateTime
|
|
2428
|
+
type: String
|
|
2429
|
+
description: String
|
|
2430
|
+
documentation: String
|
|
2431
|
+
labelColor: String
|
|
2432
|
+
visible: Boolean
|
|
2433
|
+
createdBy: String
|
|
2434
|
+
updatedBy: String
|
|
2435
|
+
users: String
|
|
2436
|
+
|
|
2437
|
+
"""May contain more than one error for same field."""
|
|
2438
|
+
errors: [ErrorType]
|
|
2439
|
+
clientMutationId: String
|
|
2440
|
+
}
|
|
2441
|
+
|
|
2442
|
+
input CreateTaskTypeMutationInput {
|
|
2443
|
+
id: String
|
|
2444
|
+
type: String!
|
|
2445
|
+
description: String!
|
|
2446
|
+
documentation: String
|
|
2447
|
+
labelColor: String
|
|
2448
|
+
visible: Boolean
|
|
2449
|
+
users: String
|
|
2450
|
+
clientMutationId: String
|
|
2451
|
+
}
|
|
2452
|
+
|
|
2453
|
+
type UpdateTaskTypeMutationPayload {
|
|
2454
|
+
id: String
|
|
2455
|
+
createdAt: DateTime
|
|
2456
|
+
updatedAt: DateTime
|
|
2457
|
+
type: String
|
|
2458
|
+
description: String
|
|
2459
|
+
documentation: String
|
|
2460
|
+
labelColor: String
|
|
2461
|
+
visible: Boolean
|
|
2462
|
+
createdBy: String
|
|
2463
|
+
updatedBy: String
|
|
2464
|
+
users: String
|
|
2465
|
+
|
|
2466
|
+
"""May contain more than one error for same field."""
|
|
2467
|
+
errors: [ErrorType]
|
|
2468
|
+
clientMutationId: String
|
|
2469
|
+
}
|
|
2470
|
+
|
|
2471
|
+
input UpdateTaskTypeMutationInput {
|
|
2472
|
+
id: String
|
|
2473
|
+
type: String
|
|
2474
|
+
description: String
|
|
2475
|
+
documentation: String
|
|
2476
|
+
labelColor: String
|
|
2477
|
+
visible: Boolean
|
|
2478
|
+
users: String
|
|
2479
|
+
clientMutationId: String
|
|
2480
|
+
}
|
|
2481
|
+
|
|
2482
|
+
type CreateTaskFileMutationPayload {
|
|
2483
|
+
id: String
|
|
2484
|
+
createdAt: DateTime
|
|
2485
|
+
updatedAt: DateTime
|
|
2486
|
+
fileLink: String
|
|
2487
|
+
name: String
|
|
2488
|
+
fileType: String
|
|
2489
|
+
createdBy: String
|
|
2490
|
+
updatedBy: String
|
|
2491
|
+
task: String
|
|
2492
|
+
|
|
2493
|
+
"""May contain more than one error for same field."""
|
|
2494
|
+
errors: [ErrorType]
|
|
2495
|
+
clientMutationId: String
|
|
2496
|
+
}
|
|
2497
|
+
|
|
2498
|
+
input CreateTaskFileMutationInput {
|
|
2499
|
+
id: String
|
|
2500
|
+
fileLink: String!
|
|
2501
|
+
name: String!
|
|
2502
|
+
fileType: String!
|
|
2503
|
+
task: String
|
|
2504
|
+
clientMutationId: String
|
|
2505
|
+
}
|
|
2506
|
+
|
|
2507
|
+
type UpdateTaskFileMutationPayload {
|
|
2508
|
+
id: String
|
|
2509
|
+
createdAt: DateTime
|
|
2510
|
+
updatedAt: DateTime
|
|
2511
|
+
fileLink: String
|
|
2512
|
+
name: String
|
|
2513
|
+
fileType: String
|
|
2514
|
+
createdBy: String
|
|
2515
|
+
updatedBy: String
|
|
2516
|
+
task: String
|
|
2517
|
+
|
|
2518
|
+
"""May contain more than one error for same field."""
|
|
2519
|
+
errors: [ErrorType]
|
|
2520
|
+
clientMutationId: String
|
|
2521
|
+
}
|
|
2522
|
+
|
|
2523
|
+
input UpdateTaskFileMutationInput {
|
|
2524
|
+
id: String
|
|
2525
|
+
fileLink: String
|
|
2526
|
+
name: String
|
|
2527
|
+
fileType: String
|
|
2528
|
+
task: String
|
|
2529
|
+
clientMutationId: String
|
|
2530
|
+
}
|
|
2531
|
+
|
|
2532
|
+
type CreateTaskReviewMutationPayload {
|
|
2533
|
+
id: String
|
|
2534
|
+
createdAt: DateTime
|
|
2535
|
+
updatedAt: DateTime
|
|
2536
|
+
satisfactionRating: Int
|
|
2537
|
+
satisfactionFeedback: String
|
|
2538
|
+
nps: Int
|
|
2539
|
+
npsFeedback: String
|
|
2540
|
+
status: status
|
|
2541
|
+
extraQuestions: JSONString
|
|
2542
|
+
task: String
|
|
2543
|
+
|
|
2544
|
+
"""May contain more than one error for same field."""
|
|
2545
|
+
errors: [ErrorType]
|
|
2546
|
+
clientMutationId: String
|
|
2547
|
+
}
|
|
2548
|
+
|
|
2549
|
+
"""An enumeration."""
|
|
2550
|
+
enum status {
|
|
2551
|
+
"""Started"""
|
|
2552
|
+
STARTED
|
|
2553
|
+
|
|
2554
|
+
"""Completed"""
|
|
2555
|
+
COMPLETED
|
|
2556
|
+
}
|
|
2557
|
+
|
|
2558
|
+
input CreateTaskReviewMutationInput {
|
|
2559
|
+
id: String
|
|
2560
|
+
satisfactionRating: Int!
|
|
2561
|
+
satisfactionFeedback: String
|
|
2562
|
+
nps: Int
|
|
2563
|
+
npsFeedback: String
|
|
2564
|
+
status: status
|
|
2565
|
+
extraQuestions: JSONString
|
|
2566
|
+
task: String!
|
|
2567
|
+
clientMutationId: String
|
|
2568
|
+
}
|
|
2569
|
+
|
|
2570
|
+
type UpdateTaskReviewMutationPayload {
|
|
2571
|
+
id: String
|
|
2572
|
+
createdAt: DateTime
|
|
2573
|
+
updatedAt: DateTime
|
|
2574
|
+
satisfactionRating: Int
|
|
2575
|
+
satisfactionFeedback: String
|
|
2576
|
+
nps: Int
|
|
2577
|
+
npsFeedback: String
|
|
2578
|
+
status: status
|
|
2579
|
+
extraQuestions: JSONString
|
|
2580
|
+
task: String
|
|
2581
|
+
|
|
2582
|
+
"""May contain more than one error for same field."""
|
|
2583
|
+
errors: [ErrorType]
|
|
2584
|
+
clientMutationId: String
|
|
2585
|
+
}
|
|
2586
|
+
|
|
2587
|
+
input UpdateTaskReviewMutationInput {
|
|
2588
|
+
id: String
|
|
2589
|
+
satisfactionRating: Int
|
|
2590
|
+
satisfactionFeedback: String
|
|
2591
|
+
nps: Int
|
|
2592
|
+
npsFeedback: String
|
|
2593
|
+
status: status
|
|
2594
|
+
extraQuestions: JSONString
|
|
2595
|
+
task: String
|
|
2596
|
+
clientMutationId: String
|
|
2597
|
+
}
|
|
2598
|
+
|
|
2599
|
+
input UpsertTaskReviewInput {
|
|
2600
|
+
satisfactionRating: Int = null
|
|
2601
|
+
satisfactionFeedback: String = null
|
|
2602
|
+
status: String = null
|
|
2603
|
+
}
|
|
2604
|
+
|
|
2605
|
+
input EmailListUserInput {
|
|
2606
|
+
userId: UUID!
|
|
2607
|
+
emailListId: UUID!
|
|
2608
|
+
}
|
|
2609
|
+
|
|
2610
|
+
type CreateEmailListMutationPayload {
|
|
2611
|
+
id: String
|
|
2612
|
+
createdAt: DateTime
|
|
2613
|
+
updatedAt: DateTime
|
|
2614
|
+
type: String
|
|
2615
|
+
description: String
|
|
2616
|
+
createdBy: String
|
|
2617
|
+
updatedBy: String
|
|
2618
|
+
users: String
|
|
2619
|
+
|
|
2620
|
+
"""May contain more than one error for same field."""
|
|
2621
|
+
errors: [ErrorType]
|
|
2622
|
+
clientMutationId: String
|
|
2623
|
+
}
|
|
2624
|
+
|
|
2625
|
+
input CreateEmailListMutationInput {
|
|
2626
|
+
id: String
|
|
2627
|
+
type: String!
|
|
2628
|
+
description: String!
|
|
2629
|
+
users: String
|
|
2630
|
+
clientMutationId: String
|
|
2631
|
+
}
|
|
2632
|
+
|
|
2633
|
+
type UpdateEmailListMutationPayload {
|
|
2634
|
+
id: String
|
|
2635
|
+
createdAt: DateTime
|
|
2636
|
+
updatedAt: DateTime
|
|
2637
|
+
type: String
|
|
2638
|
+
description: String
|
|
2639
|
+
createdBy: String
|
|
2640
|
+
updatedBy: String
|
|
2641
|
+
users: String
|
|
2642
|
+
|
|
2643
|
+
"""May contain more than one error for same field."""
|
|
2644
|
+
errors: [ErrorType]
|
|
2645
|
+
clientMutationId: String
|
|
2646
|
+
}
|
|
2647
|
+
|
|
2648
|
+
input UpdateEmailListMutationInput {
|
|
2649
|
+
id: String
|
|
2650
|
+
type: String
|
|
2651
|
+
description: String
|
|
2652
|
+
users: String
|
|
2653
|
+
clientMutationId: String
|
|
2654
|
+
}
|
|
2655
|
+
|
|
2656
|
+
type CreateMessageTemplateMutationPayload {
|
|
2657
|
+
id: String
|
|
2658
|
+
createdAt: DateTime
|
|
2659
|
+
updatedAt: DateTime
|
|
2660
|
+
goal: String
|
|
2661
|
+
content: String
|
|
2662
|
+
subject: String
|
|
2663
|
+
createdBy: String
|
|
2664
|
+
updatedBy: String
|
|
2665
|
+
|
|
2666
|
+
"""May contain more than one error for same field."""
|
|
2667
|
+
errors: [ErrorType]
|
|
2668
|
+
clientMutationId: String
|
|
2669
|
+
}
|
|
2670
|
+
|
|
2671
|
+
input CreateMessageTemplateMutationInput {
|
|
2672
|
+
id: String
|
|
2673
|
+
goal: String!
|
|
2674
|
+
content: String
|
|
2675
|
+
subject: String
|
|
2676
|
+
clientMutationId: String
|
|
2677
|
+
}
|
|
2678
|
+
|
|
2679
|
+
type UpdateMessageTemplateMutationPayload {
|
|
2680
|
+
id: String
|
|
2681
|
+
createdAt: DateTime
|
|
2682
|
+
updatedAt: DateTime
|
|
2683
|
+
goal: String
|
|
2684
|
+
content: String
|
|
2685
|
+
subject: String
|
|
2686
|
+
createdBy: String
|
|
2687
|
+
updatedBy: String
|
|
2688
|
+
|
|
2689
|
+
"""May contain more than one error for same field."""
|
|
2690
|
+
errors: [ErrorType]
|
|
2691
|
+
clientMutationId: String
|
|
2692
|
+
}
|
|
2693
|
+
|
|
2694
|
+
input UpdateMessageTemplateMutationInput {
|
|
2695
|
+
id: String
|
|
2696
|
+
goal: String
|
|
2697
|
+
content: String
|
|
2698
|
+
subject: String
|
|
2699
|
+
clientMutationId: String
|
|
2700
|
+
}
|
|
2701
|
+
|
|
2702
|
+
type CreateMarketingChannelMutationPayload {
|
|
2703
|
+
id: String
|
|
2704
|
+
createdAt: DateTime
|
|
2705
|
+
updatedAt: DateTime
|
|
2706
|
+
label: String
|
|
2707
|
+
show: Boolean
|
|
2708
|
+
value: Int
|
|
2709
|
+
createdBy: String
|
|
2710
|
+
updatedBy: String
|
|
2711
|
+
|
|
2712
|
+
"""May contain more than one error for same field."""
|
|
2713
|
+
errors: [ErrorType]
|
|
2714
|
+
clientMutationId: String
|
|
2715
|
+
}
|
|
2716
|
+
|
|
2717
|
+
input CreateMarketingChannelMutationInput {
|
|
2718
|
+
id: String
|
|
2719
|
+
label: String!
|
|
2720
|
+
show: Boolean
|
|
2721
|
+
value: Int
|
|
2722
|
+
clientMutationId: String
|
|
2723
|
+
}
|
|
2724
|
+
|
|
2725
|
+
type UpdateMarketingChannelMutationPayload {
|
|
2726
|
+
id: String
|
|
2727
|
+
createdAt: DateTime
|
|
2728
|
+
updatedAt: DateTime
|
|
2729
|
+
label: String
|
|
2730
|
+
show: Boolean
|
|
2731
|
+
value: Int
|
|
2732
|
+
createdBy: String
|
|
2733
|
+
updatedBy: String
|
|
2734
|
+
|
|
2735
|
+
"""May contain more than one error for same field."""
|
|
2736
|
+
errors: [ErrorType]
|
|
2737
|
+
clientMutationId: String
|
|
2738
|
+
}
|
|
2739
|
+
|
|
2740
|
+
input UpdateMarketingChannelMutationInput {
|
|
2741
|
+
id: String
|
|
2742
|
+
label: String
|
|
2743
|
+
show: Boolean
|
|
2744
|
+
value: Int
|
|
2745
|
+
clientMutationId: String
|
|
2746
|
+
}
|
|
2747
|
+
|
|
2748
|
+
type CreateContactLogMutationPayload {
|
|
2749
|
+
id: String
|
|
2750
|
+
createdAt: DateTime
|
|
2751
|
+
updatedAt: DateTime
|
|
2752
|
+
body: String
|
|
2753
|
+
dateSent: DateTime
|
|
2754
|
+
responseReceived: Boolean
|
|
2755
|
+
email: String
|
|
2756
|
+
createdBy: String
|
|
2757
|
+
updatedBy: String
|
|
2758
|
+
messageType: String
|
|
2759
|
+
partner: String
|
|
2760
|
+
client: String
|
|
2761
|
+
|
|
2762
|
+
"""May contain more than one error for same field."""
|
|
2763
|
+
errors: [ErrorType]
|
|
2764
|
+
clientMutationId: String
|
|
2765
|
+
}
|
|
2766
|
+
|
|
2767
|
+
input CreateContactLogMutationInput {
|
|
2768
|
+
id: String
|
|
2769
|
+
body: String!
|
|
2770
|
+
dateSent: DateTime
|
|
2771
|
+
responseReceived: Boolean
|
|
2772
|
+
email: String!
|
|
2773
|
+
messageType: String
|
|
2774
|
+
partner: String
|
|
2775
|
+
client: String
|
|
2776
|
+
clientMutationId: String
|
|
2777
|
+
}
|
|
2778
|
+
|
|
2779
|
+
type UpdateContactLogMutationPayload {
|
|
2780
|
+
id: String
|
|
2781
|
+
createdAt: DateTime
|
|
2782
|
+
updatedAt: DateTime
|
|
2783
|
+
body: String
|
|
2784
|
+
dateSent: DateTime
|
|
2785
|
+
responseReceived: Boolean
|
|
2786
|
+
email: String
|
|
2787
|
+
createdBy: String
|
|
2788
|
+
updatedBy: String
|
|
2789
|
+
messageType: String
|
|
2790
|
+
partner: String
|
|
2791
|
+
client: String
|
|
2792
|
+
|
|
2793
|
+
"""May contain more than one error for same field."""
|
|
2794
|
+
errors: [ErrorType]
|
|
2795
|
+
clientMutationId: String
|
|
2796
|
+
}
|
|
2797
|
+
|
|
2798
|
+
input UpdateContactLogMutationInput {
|
|
2799
|
+
id: String
|
|
2800
|
+
body: String
|
|
2801
|
+
dateSent: DateTime
|
|
2802
|
+
responseReceived: Boolean
|
|
2803
|
+
email: String
|
|
2804
|
+
messageType: String
|
|
2805
|
+
partner: String
|
|
2806
|
+
client: String
|
|
2807
|
+
clientMutationId: String
|
|
2808
|
+
}
|
|
2809
|
+
|
|
2810
|
+
type CreateUserTestimonialMutationPayload {
|
|
2811
|
+
id: String
|
|
2812
|
+
createdAt: DateTime
|
|
2813
|
+
updatedAt: DateTime
|
|
2814
|
+
userQuote: String
|
|
2815
|
+
userFname: String
|
|
2816
|
+
userLname: String
|
|
2817
|
+
userHeadshot: String
|
|
2818
|
+
teamLogo: String
|
|
2819
|
+
website: String
|
|
2820
|
+
teamName: String
|
|
2821
|
+
title: String
|
|
2822
|
+
createdBy: String
|
|
2823
|
+
updatedBy: String
|
|
2824
|
+
user: String
|
|
2825
|
+
team: String
|
|
2826
|
+
|
|
2827
|
+
"""May contain more than one error for same field."""
|
|
2828
|
+
errors: [ErrorType]
|
|
2829
|
+
clientMutationId: String
|
|
2830
|
+
}
|
|
2831
|
+
|
|
2832
|
+
input CreateUserTestimonialMutationInput {
|
|
2833
|
+
id: String
|
|
2834
|
+
userQuote: String!
|
|
2835
|
+
userFname: String!
|
|
2836
|
+
userLname: String!
|
|
2837
|
+
userHeadshot: String
|
|
2838
|
+
teamLogo: String
|
|
2839
|
+
website: String
|
|
2840
|
+
teamName: String
|
|
2841
|
+
title: String
|
|
2842
|
+
user: String
|
|
2843
|
+
team: String
|
|
2844
|
+
clientMutationId: String
|
|
2845
|
+
}
|
|
2846
|
+
|
|
2847
|
+
type UpdateUserTestimonialMutationPayload {
|
|
2848
|
+
id: String
|
|
2849
|
+
createdAt: DateTime
|
|
2850
|
+
updatedAt: DateTime
|
|
2851
|
+
userQuote: String
|
|
2852
|
+
userFname: String
|
|
2853
|
+
userLname: String
|
|
2854
|
+
userHeadshot: String
|
|
2855
|
+
teamLogo: String
|
|
2856
|
+
website: String
|
|
2857
|
+
teamName: String
|
|
2858
|
+
title: String
|
|
2859
|
+
createdBy: String
|
|
2860
|
+
updatedBy: String
|
|
2861
|
+
user: String
|
|
2862
|
+
team: String
|
|
2863
|
+
|
|
2864
|
+
"""May contain more than one error for same field."""
|
|
2865
|
+
errors: [ErrorType]
|
|
2866
|
+
clientMutationId: String
|
|
2867
|
+
}
|
|
2868
|
+
|
|
2869
|
+
input UpdateUserTestimonialMutationInput {
|
|
2870
|
+
id: String
|
|
2871
|
+
userQuote: String
|
|
2872
|
+
userFname: String
|
|
2873
|
+
userLname: String
|
|
2874
|
+
userHeadshot: String
|
|
2875
|
+
teamLogo: String
|
|
2876
|
+
website: String
|
|
2877
|
+
teamName: String
|
|
2878
|
+
title: String
|
|
2879
|
+
user: String
|
|
2880
|
+
team: String
|
|
2881
|
+
clientMutationId: String
|
|
2882
|
+
}
|
|
2883
|
+
|
|
2884
|
+
type CreateUserLeadMutationPayload {
|
|
2885
|
+
id: String
|
|
2886
|
+
createdAt: DateTime
|
|
2887
|
+
updatedAt: DateTime
|
|
2888
|
+
firstName: String
|
|
2889
|
+
lastName: String
|
|
2890
|
+
email: String
|
|
2891
|
+
phone: String
|
|
2892
|
+
contactMode: String
|
|
2893
|
+
preferredContactMode: String
|
|
2894
|
+
company: String
|
|
2895
|
+
website: String
|
|
2896
|
+
startupSize: String
|
|
2897
|
+
startupType: JSONString
|
|
2898
|
+
leadPriorities: JSONString
|
|
2899
|
+
otherComments: String
|
|
2900
|
+
leadSource: String
|
|
2901
|
+
referralCode: String
|
|
2902
|
+
utmSource: String
|
|
2903
|
+
utmMedium: String
|
|
2904
|
+
utmCampaign: String
|
|
2905
|
+
utmTerm: String
|
|
2906
|
+
utmContent: String
|
|
2907
|
+
gclid: String
|
|
2908
|
+
fbclid: String
|
|
2909
|
+
complete: Boolean
|
|
2910
|
+
knowToDelegate: Boolean
|
|
2911
|
+
taskCards: JSONString
|
|
2912
|
+
slot: DateTime
|
|
2913
|
+
startupStage: String
|
|
2914
|
+
role: String
|
|
2915
|
+
timezone: String
|
|
2916
|
+
createdBy: String
|
|
2917
|
+
updatedBy: String
|
|
2918
|
+
user: String
|
|
2919
|
+
|
|
2920
|
+
"""May contain more than one error for same field."""
|
|
2921
|
+
errors: [ErrorType]
|
|
2922
|
+
clientMutationId: String
|
|
2923
|
+
}
|
|
2924
|
+
|
|
2925
|
+
input CreateUserLeadMutationInput {
|
|
2926
|
+
id: String
|
|
2927
|
+
leadInterests: [String]
|
|
2928
|
+
firstName: String!
|
|
2929
|
+
lastName: String!
|
|
2930
|
+
email: String!
|
|
2931
|
+
phone: String
|
|
2932
|
+
contactMode: String
|
|
2933
|
+
preferredContactMode: String
|
|
2934
|
+
company: String
|
|
2935
|
+
website: String
|
|
2936
|
+
startupSize: String
|
|
2937
|
+
startupType: JSONString
|
|
2938
|
+
leadPriorities: JSONString
|
|
2939
|
+
otherComments: String
|
|
2940
|
+
leadSource: String
|
|
2941
|
+
referralCode: String
|
|
2942
|
+
utmSource: String
|
|
2943
|
+
utmMedium: String
|
|
2944
|
+
utmCampaign: String
|
|
2945
|
+
utmTerm: String
|
|
2946
|
+
utmContent: String
|
|
2947
|
+
gclid: String
|
|
2948
|
+
fbclid: String
|
|
2949
|
+
complete: Boolean
|
|
2950
|
+
knowToDelegate: Boolean
|
|
2951
|
+
taskCards: JSONString
|
|
2952
|
+
slot: DateTime
|
|
2953
|
+
startupStage: String
|
|
2954
|
+
role: String
|
|
2955
|
+
timezone: String
|
|
2956
|
+
user: String
|
|
2957
|
+
clientMutationId: String
|
|
2958
|
+
}
|
|
2959
|
+
|
|
2960
|
+
type UpdateUserLeadMutationPayload {
|
|
2961
|
+
id: String
|
|
2962
|
+
createdAt: DateTime
|
|
2963
|
+
updatedAt: DateTime
|
|
2964
|
+
firstName: String
|
|
2965
|
+
lastName: String
|
|
2966
|
+
email: String
|
|
2967
|
+
phone: String
|
|
2968
|
+
contactMode: String
|
|
2969
|
+
preferredContactMode: String
|
|
2970
|
+
company: String
|
|
2971
|
+
website: String
|
|
2972
|
+
startupSize: String
|
|
2973
|
+
startupType: JSONString
|
|
2974
|
+
leadPriorities: JSONString
|
|
2975
|
+
otherComments: String
|
|
2976
|
+
leadSource: String
|
|
2977
|
+
referralCode: String
|
|
2978
|
+
utmSource: String
|
|
2979
|
+
utmMedium: String
|
|
2980
|
+
utmCampaign: String
|
|
2981
|
+
utmTerm: String
|
|
2982
|
+
utmContent: String
|
|
2983
|
+
gclid: String
|
|
2984
|
+
fbclid: String
|
|
2985
|
+
complete: Boolean
|
|
2986
|
+
knowToDelegate: Boolean
|
|
2987
|
+
taskCards: JSONString
|
|
2988
|
+
slot: DateTime
|
|
2989
|
+
startupStage: String
|
|
2990
|
+
role: String
|
|
2991
|
+
timezone: String
|
|
2992
|
+
createdBy: String
|
|
2993
|
+
updatedBy: String
|
|
2994
|
+
user: String
|
|
2995
|
+
|
|
2996
|
+
"""May contain more than one error for same field."""
|
|
2997
|
+
errors: [ErrorType]
|
|
2998
|
+
clientMutationId: String
|
|
2999
|
+
}
|
|
3000
|
+
|
|
3001
|
+
input UpdateUserLeadMutationInput {
|
|
3002
|
+
id: String
|
|
3003
|
+
leadInterests: [String]
|
|
3004
|
+
firstName: String
|
|
3005
|
+
lastName: String
|
|
3006
|
+
email: String
|
|
3007
|
+
phone: String
|
|
3008
|
+
contactMode: String
|
|
3009
|
+
preferredContactMode: String
|
|
3010
|
+
company: String
|
|
3011
|
+
website: String
|
|
3012
|
+
startupSize: String
|
|
3013
|
+
startupType: JSONString
|
|
3014
|
+
leadPriorities: JSONString
|
|
3015
|
+
otherComments: String
|
|
3016
|
+
leadSource: String
|
|
3017
|
+
referralCode: String
|
|
3018
|
+
utmSource: String
|
|
3019
|
+
utmMedium: String
|
|
3020
|
+
utmCampaign: String
|
|
3021
|
+
utmTerm: String
|
|
3022
|
+
utmContent: String
|
|
3023
|
+
gclid: String
|
|
3024
|
+
fbclid: String
|
|
3025
|
+
complete: Boolean
|
|
3026
|
+
knowToDelegate: Boolean
|
|
3027
|
+
taskCards: JSONString
|
|
3028
|
+
slot: DateTime
|
|
3029
|
+
startupStage: String
|
|
3030
|
+
role: String
|
|
3031
|
+
timezone: String
|
|
3032
|
+
user: String
|
|
3033
|
+
clientMutationId: String
|
|
3034
|
+
}
|
|
3035
|
+
|
|
3036
|
+
type CreateMarketingEmailLogMutationPayload {
|
|
3037
|
+
id: String
|
|
3038
|
+
createdAt: DateTime
|
|
3039
|
+
updatedAt: DateTime
|
|
3040
|
+
objectId: String
|
|
3041
|
+
topic: topic
|
|
3042
|
+
referenceModel: String
|
|
3043
|
+
recipient: String
|
|
3044
|
+
|
|
3045
|
+
"""May contain more than one error for same field."""
|
|
3046
|
+
errors: [ErrorType]
|
|
3047
|
+
clientMutationId: String
|
|
3048
|
+
}
|
|
3049
|
+
|
|
3050
|
+
"""An enumeration."""
|
|
3051
|
+
enum topic {
|
|
3052
|
+
"""Task Feedback Ask"""
|
|
3053
|
+
TASK_FEEDBACK_ASK
|
|
3054
|
+
}
|
|
3055
|
+
|
|
3056
|
+
input CreateMarketingEmailLogMutationInput {
|
|
3057
|
+
id: String
|
|
3058
|
+
objectId: String!
|
|
3059
|
+
topic: topic!
|
|
3060
|
+
referenceModel: String!
|
|
3061
|
+
recipient: String!
|
|
3062
|
+
clientMutationId: String
|
|
3063
|
+
}
|
|
3064
|
+
|
|
3065
|
+
type UpdateMarketingEmailLogMutationPayload {
|
|
3066
|
+
id: String
|
|
3067
|
+
createdAt: DateTime
|
|
3068
|
+
updatedAt: DateTime
|
|
3069
|
+
objectId: String
|
|
3070
|
+
topic: topic
|
|
3071
|
+
referenceModel: String
|
|
3072
|
+
recipient: String
|
|
3073
|
+
|
|
3074
|
+
"""May contain more than one error for same field."""
|
|
3075
|
+
errors: [ErrorType]
|
|
3076
|
+
clientMutationId: String
|
|
3077
|
+
}
|
|
3078
|
+
|
|
3079
|
+
input UpdateMarketingEmailLogMutationInput {
|
|
3080
|
+
id: String
|
|
3081
|
+
objectId: String
|
|
3082
|
+
topic: topic
|
|
3083
|
+
referenceModel: String
|
|
3084
|
+
recipient: String
|
|
3085
|
+
clientMutationId: String
|
|
3086
|
+
}
|
|
3087
|
+
|
|
3088
|
+
type CreatePromoCodeMutationPayload {
|
|
3089
|
+
id: String
|
|
3090
|
+
createdAt: DateTime
|
|
3091
|
+
updatedAt: DateTime
|
|
3092
|
+
code: String
|
|
3093
|
+
label: String
|
|
3094
|
+
project: String
|
|
3095
|
+
resource: String
|
|
3096
|
+
type: String
|
|
3097
|
+
value: Int
|
|
3098
|
+
createdBy: String
|
|
3099
|
+
updatedBy: String
|
|
3100
|
+
referrer: String
|
|
3101
|
+
|
|
3102
|
+
"""May contain more than one error for same field."""
|
|
3103
|
+
errors: [ErrorType]
|
|
3104
|
+
clientMutationId: String
|
|
3105
|
+
}
|
|
3106
|
+
|
|
3107
|
+
input CreatePromoCodeMutationInput {
|
|
3108
|
+
id: String
|
|
3109
|
+
code: String!
|
|
3110
|
+
label: String!
|
|
3111
|
+
project: String
|
|
3112
|
+
resource: String
|
|
3113
|
+
type: String
|
|
3114
|
+
value: Int
|
|
3115
|
+
referrer: String
|
|
3116
|
+
clientMutationId: String
|
|
3117
|
+
}
|
|
3118
|
+
|
|
3119
|
+
type UpdatePromoCodeMutationPayload {
|
|
3120
|
+
id: String
|
|
3121
|
+
createdAt: DateTime
|
|
3122
|
+
updatedAt: DateTime
|
|
3123
|
+
code: String
|
|
3124
|
+
label: String
|
|
3125
|
+
project: String
|
|
3126
|
+
resource: String
|
|
3127
|
+
type: String
|
|
3128
|
+
value: Int
|
|
3129
|
+
createdBy: String
|
|
3130
|
+
updatedBy: String
|
|
3131
|
+
referrer: String
|
|
3132
|
+
|
|
3133
|
+
"""May contain more than one error for same field."""
|
|
3134
|
+
errors: [ErrorType]
|
|
3135
|
+
clientMutationId: String
|
|
3136
|
+
}
|
|
3137
|
+
|
|
3138
|
+
input UpdatePromoCodeMutationInput {
|
|
3139
|
+
id: String
|
|
3140
|
+
code: String
|
|
3141
|
+
label: String
|
|
3142
|
+
project: String
|
|
3143
|
+
resource: String
|
|
3144
|
+
type: String
|
|
3145
|
+
value: Int
|
|
3146
|
+
referrer: String
|
|
3147
|
+
clientMutationId: String
|
|
3148
|
+
}
|
|
3149
|
+
|
|
3150
|
+
type CreateSubscriptionMutationPayload {
|
|
3151
|
+
id: String
|
|
3152
|
+
createdAt: DateTime
|
|
3153
|
+
updatedAt: DateTime
|
|
3154
|
+
subscriptionName: String
|
|
3155
|
+
flatHours: Int
|
|
3156
|
+
label: String
|
|
3157
|
+
hourlyRate: Float
|
|
3158
|
+
createdBy: String
|
|
3159
|
+
updatedBy: String
|
|
3160
|
+
|
|
3161
|
+
"""May contain more than one error for same field."""
|
|
3162
|
+
errors: [ErrorType]
|
|
3163
|
+
clientMutationId: String
|
|
3164
|
+
}
|
|
3165
|
+
|
|
3166
|
+
input CreateSubscriptionMutationInput {
|
|
3167
|
+
id: String
|
|
3168
|
+
subscriptionName: String!
|
|
3169
|
+
flatHours: Int
|
|
3170
|
+
label: String
|
|
3171
|
+
hourlyRate: Float
|
|
3172
|
+
clientMutationId: String
|
|
3173
|
+
}
|
|
3174
|
+
|
|
3175
|
+
type UpdateSubscriptionMutationPayload {
|
|
3176
|
+
id: String
|
|
3177
|
+
createdAt: DateTime
|
|
3178
|
+
updatedAt: DateTime
|
|
3179
|
+
subscriptionName: String
|
|
3180
|
+
flatHours: Int
|
|
3181
|
+
label: String
|
|
3182
|
+
hourlyRate: Float
|
|
3183
|
+
createdBy: String
|
|
3184
|
+
updatedBy: String
|
|
3185
|
+
|
|
3186
|
+
"""May contain more than one error for same field."""
|
|
3187
|
+
errors: [ErrorType]
|
|
3188
|
+
clientMutationId: String
|
|
3189
|
+
}
|
|
3190
|
+
|
|
3191
|
+
input UpdateSubscriptionMutationInput {
|
|
3192
|
+
id: String
|
|
3193
|
+
subscriptionName: String
|
|
3194
|
+
flatHours: Int
|
|
3195
|
+
label: String
|
|
3196
|
+
hourlyRate: Float
|
|
3197
|
+
clientMutationId: String
|
|
3198
|
+
}
|
|
3199
|
+
|
|
3200
|
+
type CreatePackageMutationPayload {
|
|
3201
|
+
id: String
|
|
3202
|
+
createdAt: DateTime
|
|
3203
|
+
updatedAt: DateTime
|
|
3204
|
+
label: String
|
|
3205
|
+
hourlyRate: Float
|
|
3206
|
+
flatHours: Int
|
|
3207
|
+
createdBy: String
|
|
3208
|
+
updatedBy: String
|
|
3209
|
+
|
|
3210
|
+
"""May contain more than one error for same field."""
|
|
3211
|
+
errors: [ErrorType]
|
|
3212
|
+
clientMutationId: String
|
|
3213
|
+
}
|
|
3214
|
+
|
|
3215
|
+
input CreatePackageMutationInput {
|
|
3216
|
+
id: String
|
|
3217
|
+
label: String!
|
|
3218
|
+
hourlyRate: Float
|
|
3219
|
+
flatHours: Int
|
|
3220
|
+
clientMutationId: String
|
|
3221
|
+
}
|
|
3222
|
+
|
|
3223
|
+
type UpdatePackageMutationPayload {
|
|
3224
|
+
id: String
|
|
3225
|
+
createdAt: DateTime
|
|
3226
|
+
updatedAt: DateTime
|
|
3227
|
+
label: String
|
|
3228
|
+
hourlyRate: Float
|
|
3229
|
+
flatHours: Int
|
|
3230
|
+
createdBy: String
|
|
3231
|
+
updatedBy: String
|
|
3232
|
+
|
|
3233
|
+
"""May contain more than one error for same field."""
|
|
3234
|
+
errors: [ErrorType]
|
|
3235
|
+
clientMutationId: String
|
|
3236
|
+
}
|
|
3237
|
+
|
|
3238
|
+
input UpdatePackageMutationInput {
|
|
3239
|
+
id: String
|
|
3240
|
+
label: String
|
|
3241
|
+
hourlyRate: Float
|
|
3242
|
+
flatHours: Int
|
|
3243
|
+
clientMutationId: String
|
|
3244
|
+
}
|
|
3245
|
+
|
|
3246
|
+
type CreateWorkHoursMutationPayload {
|
|
3247
|
+
id: String
|
|
3248
|
+
startedAt: DateTime
|
|
3249
|
+
endedAt: DateTime
|
|
3250
|
+
timeSpent: Int
|
|
3251
|
+
log: String
|
|
3252
|
+
link: String
|
|
3253
|
+
workType: String
|
|
3254
|
+
paidOut: Boolean
|
|
3255
|
+
sentInvoice: Boolean
|
|
3256
|
+
updatedAt: DateTime
|
|
3257
|
+
createdBy: String
|
|
3258
|
+
updatedBy: String
|
|
3259
|
+
task: String
|
|
3260
|
+
team: String
|
|
3261
|
+
associate: String
|
|
3262
|
+
|
|
3263
|
+
"""May contain more than one error for same field."""
|
|
3264
|
+
errors: [ErrorType]
|
|
3265
|
+
clientMutationId: String
|
|
3266
|
+
}
|
|
3267
|
+
|
|
3268
|
+
input CreateWorkHoursMutationInput {
|
|
3269
|
+
id: String
|
|
3270
|
+
createdAt: DateTime
|
|
3271
|
+
startedAt: DateTime
|
|
3272
|
+
endedAt: DateTime
|
|
3273
|
+
timeSpent: Int
|
|
3274
|
+
log: String!
|
|
3275
|
+
link: String
|
|
3276
|
+
workType: String
|
|
3277
|
+
paidOut: Boolean
|
|
3278
|
+
sentInvoice: Boolean
|
|
3279
|
+
task: String
|
|
3280
|
+
team: String
|
|
3281
|
+
associate: String
|
|
3282
|
+
clientMutationId: String
|
|
3283
|
+
}
|
|
3284
|
+
|
|
3285
|
+
type UpdateWorkHoursMutationPayload {
|
|
3286
|
+
id: String
|
|
3287
|
+
startedAt: DateTime
|
|
3288
|
+
endedAt: DateTime
|
|
3289
|
+
timeSpent: Int
|
|
3290
|
+
log: String
|
|
3291
|
+
link: String
|
|
3292
|
+
workType: String
|
|
3293
|
+
paidOut: Boolean
|
|
3294
|
+
sentInvoice: Boolean
|
|
3295
|
+
updatedAt: DateTime
|
|
3296
|
+
createdBy: String
|
|
3297
|
+
updatedBy: String
|
|
3298
|
+
task: String
|
|
3299
|
+
team: String
|
|
3300
|
+
associate: String
|
|
3301
|
+
|
|
3302
|
+
"""May contain more than one error for same field."""
|
|
3303
|
+
errors: [ErrorType]
|
|
3304
|
+
clientMutationId: String
|
|
3305
|
+
}
|
|
3306
|
+
|
|
3307
|
+
input UpdateWorkHoursMutationInput {
|
|
3308
|
+
id: String
|
|
3309
|
+
createdAt: DateTime
|
|
3310
|
+
startedAt: DateTime
|
|
3311
|
+
endedAt: DateTime
|
|
3312
|
+
timeSpent: Int
|
|
3313
|
+
log: String
|
|
3314
|
+
link: String
|
|
3315
|
+
workType: String
|
|
3316
|
+
paidOut: Boolean
|
|
3317
|
+
sentInvoice: Boolean
|
|
3318
|
+
task: String
|
|
3319
|
+
team: String
|
|
3320
|
+
associate: String
|
|
3321
|
+
clientMutationId: String
|
|
3322
|
+
}
|
|
3323
|
+
|
|
3324
|
+
input MarkWorkHoursInput {
|
|
3325
|
+
filters: MarkWorkHoursFiltersInput!
|
|
3326
|
+
fields: MarkWorkHoursFieldInput!
|
|
3327
|
+
}
|
|
3328
|
+
|
|
3329
|
+
input MarkWorkHoursFiltersInput {
|
|
3330
|
+
teamId: UUID
|
|
3331
|
+
associateId: UUID
|
|
3332
|
+
start: DateTime!
|
|
3333
|
+
end: DateTime!
|
|
3334
|
+
workType: [String!]
|
|
3335
|
+
}
|
|
3336
|
+
|
|
3337
|
+
input MarkWorkHoursFieldInput {
|
|
3338
|
+
paidOut: Boolean
|
|
3339
|
+
sentInvoice: Boolean
|
|
3340
|
+
}
|
|
3341
|
+
|
|
3342
|
+
input StartWorkHoursFiltersInput {
|
|
3343
|
+
taskId: UUID!
|
|
3344
|
+
log: String!
|
|
3345
|
+
link: String
|
|
3346
|
+
workType: String!
|
|
3347
|
+
}
|
|
3348
|
+
|
|
3349
|
+
type CreateDiscountMutationPayload {
|
|
3350
|
+
id: String
|
|
3351
|
+
createdAt: DateTime
|
|
3352
|
+
updatedAt: DateTime
|
|
3353
|
+
label: String
|
|
3354
|
+
code: String
|
|
3355
|
+
percentageValue: Float
|
|
3356
|
+
duration: Int
|
|
3357
|
+
expiresOn: DateTime
|
|
3358
|
+
usageCount: Int
|
|
3359
|
+
createdBy: String
|
|
3360
|
+
updatedBy: String
|
|
3361
|
+
|
|
3362
|
+
"""May contain more than one error for same field."""
|
|
3363
|
+
errors: [ErrorType]
|
|
3364
|
+
clientMutationId: String
|
|
3365
|
+
}
|
|
3366
|
+
|
|
3367
|
+
input CreateDiscountMutationInput {
|
|
3368
|
+
id: String
|
|
3369
|
+
label: String!
|
|
3370
|
+
code: String!
|
|
3371
|
+
percentageValue: Float
|
|
3372
|
+
duration: Int
|
|
3373
|
+
expiresOn: DateTime!
|
|
3374
|
+
usageCount: Int
|
|
3375
|
+
clientMutationId: String
|
|
3376
|
+
}
|
|
3377
|
+
|
|
3378
|
+
type UpdateDiscountMutationPayload {
|
|
3379
|
+
id: String
|
|
3380
|
+
createdAt: DateTime
|
|
3381
|
+
updatedAt: DateTime
|
|
3382
|
+
label: String
|
|
3383
|
+
code: String
|
|
3384
|
+
percentageValue: Float
|
|
3385
|
+
duration: Int
|
|
3386
|
+
expiresOn: DateTime
|
|
3387
|
+
usageCount: Int
|
|
3388
|
+
createdBy: String
|
|
3389
|
+
updatedBy: String
|
|
3390
|
+
|
|
3391
|
+
"""May contain more than one error for same field."""
|
|
3392
|
+
errors: [ErrorType]
|
|
3393
|
+
clientMutationId: String
|
|
3394
|
+
}
|
|
3395
|
+
|
|
3396
|
+
input UpdateDiscountMutationInput {
|
|
3397
|
+
id: String
|
|
3398
|
+
label: String
|
|
3399
|
+
code: String
|
|
3400
|
+
percentageValue: Float
|
|
3401
|
+
duration: Int
|
|
3402
|
+
expiresOn: DateTime
|
|
3403
|
+
usageCount: Int
|
|
3404
|
+
clientMutationId: String
|
|
3405
|
+
}
|
|
3406
|
+
|
|
3407
|
+
type CreateMenuItemMutationPayload {
|
|
3408
|
+
id: String
|
|
3409
|
+
createdAt: DateTime
|
|
3410
|
+
updatedAt: DateTime
|
|
3411
|
+
description: String
|
|
3412
|
+
code: String
|
|
3413
|
+
unit: unit
|
|
3414
|
+
price: Float
|
|
3415
|
+
operation: operation
|
|
3416
|
+
createdBy: String
|
|
3417
|
+
updatedBy: String
|
|
3418
|
+
|
|
3419
|
+
"""May contain more than one error for same field."""
|
|
3420
|
+
errors: [ErrorType]
|
|
3421
|
+
clientMutationId: String
|
|
3422
|
+
}
|
|
3423
|
+
|
|
3424
|
+
"""An enumeration."""
|
|
3425
|
+
enum unit {
|
|
3426
|
+
"""Per Row"""
|
|
3427
|
+
PR
|
|
3428
|
+
|
|
3429
|
+
"""Per Spreadsheet"""
|
|
3430
|
+
PS
|
|
3431
|
+
}
|
|
3432
|
+
|
|
3433
|
+
"""An enumeration."""
|
|
3434
|
+
enum operation {
|
|
3435
|
+
"""Addition"""
|
|
3436
|
+
ADD
|
|
3437
|
+
|
|
3438
|
+
"""Multiplication"""
|
|
3439
|
+
MUL
|
|
3440
|
+
}
|
|
3441
|
+
|
|
3442
|
+
input CreateMenuItemMutationInput {
|
|
3443
|
+
id: String
|
|
3444
|
+
description: String
|
|
3445
|
+
code: String!
|
|
3446
|
+
unit: unit
|
|
3447
|
+
price: Float
|
|
3448
|
+
operation: operation
|
|
3449
|
+
clientMutationId: String
|
|
3450
|
+
}
|
|
3451
|
+
|
|
3452
|
+
type UpdateMenuItemMutationPayload {
|
|
3453
|
+
id: String
|
|
3454
|
+
createdAt: DateTime
|
|
3455
|
+
updatedAt: DateTime
|
|
3456
|
+
description: String
|
|
3457
|
+
code: String
|
|
3458
|
+
unit: unit
|
|
3459
|
+
price: Float
|
|
3460
|
+
operation: operation
|
|
3461
|
+
createdBy: String
|
|
3462
|
+
updatedBy: String
|
|
3463
|
+
|
|
3464
|
+
"""May contain more than one error for same field."""
|
|
3465
|
+
errors: [ErrorType]
|
|
3466
|
+
clientMutationId: String
|
|
3467
|
+
}
|
|
3468
|
+
|
|
3469
|
+
input UpdateMenuItemMutationInput {
|
|
3470
|
+
id: String
|
|
3471
|
+
description: String
|
|
3472
|
+
code: String
|
|
3473
|
+
unit: unit
|
|
3474
|
+
price: Float
|
|
3475
|
+
operation: operation
|
|
3476
|
+
clientMutationId: String
|
|
3477
|
+
}
|
|
3478
|
+
|
|
3479
|
+
type CreateInvoiceMutationPayload {
|
|
3480
|
+
id: String
|
|
3481
|
+
createdAt: DateTime
|
|
3482
|
+
updatedAt: DateTime
|
|
3483
|
+
memo: String
|
|
3484
|
+
createdBy: String
|
|
3485
|
+
updatedBy: String
|
|
3486
|
+
team: String
|
|
3487
|
+
tasks: String
|
|
3488
|
+
|
|
3489
|
+
"""May contain more than one error for same field."""
|
|
3490
|
+
errors: [ErrorType]
|
|
3491
|
+
clientMutationId: String
|
|
3492
|
+
}
|
|
3493
|
+
|
|
3494
|
+
input CreateInvoiceMutationInput {
|
|
3495
|
+
id: String
|
|
3496
|
+
memo: String
|
|
3497
|
+
team: String
|
|
3498
|
+
clientMutationId: String
|
|
3499
|
+
}
|
|
3500
|
+
|
|
3501
|
+
type UpdateInvoiceMutationPayload {
|
|
3502
|
+
id: String
|
|
3503
|
+
createdAt: DateTime
|
|
3504
|
+
updatedAt: DateTime
|
|
3505
|
+
memo: String
|
|
3506
|
+
createdBy: String
|
|
3507
|
+
updatedBy: String
|
|
3508
|
+
team: String
|
|
3509
|
+
tasks: String
|
|
3510
|
+
|
|
3511
|
+
"""May contain more than one error for same field."""
|
|
3512
|
+
errors: [ErrorType]
|
|
3513
|
+
clientMutationId: String
|
|
3514
|
+
}
|
|
3515
|
+
|
|
3516
|
+
input UpdateInvoiceMutationInput {
|
|
3517
|
+
id: String
|
|
3518
|
+
memo: String
|
|
3519
|
+
team: String
|
|
3520
|
+
clientMutationId: String
|
|
3521
|
+
}
|
|
3522
|
+
|
|
3523
|
+
type PasswordAuthPayload {
|
|
3524
|
+
payload: GenericScalar!
|
|
3525
|
+
refreshExpiresIn: Int!
|
|
3526
|
+
user: UserNode
|
|
3527
|
+
clientMutationId: String
|
|
3528
|
+
token: String!
|
|
3529
|
+
refreshToken: String!
|
|
3530
|
+
}
|
|
3531
|
+
|
|
3532
|
+
"""
|
|
3533
|
+
The `GenericScalar` scalar type represents a generic
|
|
3534
|
+
GraphQL scalar value that could be:
|
|
3535
|
+
String, Boolean, Int, Float, List or Object.
|
|
3536
|
+
"""
|
|
3537
|
+
scalar GenericScalar
|
|
3538
|
+
|
|
3539
|
+
input PasswordAuthInput {
|
|
3540
|
+
clientMutationId: String
|
|
3541
|
+
username: String!
|
|
3542
|
+
password: String!
|
|
3543
|
+
}
|
|
3544
|
+
|
|
3545
|
+
type CodeExchangeAuthPayload {
|
|
3546
|
+
payload: GenericScalar!
|
|
3547
|
+
refreshExpiresIn: Int!
|
|
3548
|
+
user: UserNode
|
|
3549
|
+
clientMutationId: String
|
|
3550
|
+
token: String!
|
|
3551
|
+
refreshToken: String!
|
|
3552
|
+
}
|
|
3553
|
+
|
|
3554
|
+
input CodeExchangeAuthInput {
|
|
3555
|
+
clientMutationId: String
|
|
3556
|
+
code: String!
|
|
3557
|
+
}
|
|
3558
|
+
|
|
3559
|
+
type MagicLinkAuthPayload {
|
|
3560
|
+
user: UserNode
|
|
3561
|
+
clientMutationId: String
|
|
3562
|
+
}
|
|
3563
|
+
|
|
3564
|
+
input MagicLinkAuthInput {
|
|
3565
|
+
clientMutationId: String
|
|
3566
|
+
code: String!
|
|
3567
|
+
}
|
|
3568
|
+
|
|
3569
|
+
type GoogleAccessTokenAuthPayload {
|
|
3570
|
+
payload: GenericScalar!
|
|
3571
|
+
refreshExpiresIn: Int!
|
|
3572
|
+
user: UserNode
|
|
3573
|
+
clientMutationId: String
|
|
3574
|
+
token: String!
|
|
3575
|
+
refreshToken: String!
|
|
3576
|
+
}
|
|
3577
|
+
|
|
3578
|
+
input GoogleAccessTokenAuthInput {
|
|
3579
|
+
clientMutationId: String
|
|
3580
|
+
accessToken: String!
|
|
3581
|
+
}
|
|
3582
|
+
|
|
3583
|
+
type VerifyPayload {
|
|
3584
|
+
payload: GenericScalar!
|
|
3585
|
+
clientMutationId: String
|
|
3586
|
+
}
|
|
3587
|
+
|
|
3588
|
+
input VerifyInput {
|
|
3589
|
+
token: String
|
|
3590
|
+
clientMutationId: String
|
|
3591
|
+
}
|
|
3592
|
+
|
|
3593
|
+
type RefreshPayload {
|
|
3594
|
+
payload: GenericScalar!
|
|
3595
|
+
refreshExpiresIn: Int!
|
|
3596
|
+
clientMutationId: String
|
|
3597
|
+
token: String!
|
|
3598
|
+
refreshToken: String!
|
|
3599
|
+
}
|
|
3600
|
+
|
|
3601
|
+
input RefreshInput {
|
|
3602
|
+
refreshToken: String
|
|
3603
|
+
clientMutationId: String
|
|
3604
|
+
}
|
|
3605
|
+
|
|
3606
|
+
type DeleteJSONWebTokenCookiePayload {
|
|
3607
|
+
deleted: Boolean!
|
|
3608
|
+
clientMutationId: String
|
|
3609
|
+
}
|
|
3610
|
+
|
|
3611
|
+
input DeleteJSONWebTokenCookieInput {
|
|
3612
|
+
clientMutationId: String
|
|
3613
|
+
}
|
|
3614
|
+
|
|
3615
|
+
type DeleteRefreshTokenCookiePayload {
|
|
3616
|
+
deleted: Boolean!
|
|
3617
|
+
clientMutationId: String
|
|
3618
|
+
}
|
|
3619
|
+
|
|
3620
|
+
input DeleteRefreshTokenCookieInput {
|
|
3621
|
+
clientMutationId: String
|
|
3622
|
+
}
|
|
3623
|
+
|
|
3624
|
+
type RevokePayload {
|
|
3625
|
+
revoked: Int!
|
|
3626
|
+
clientMutationId: String
|
|
3627
|
+
}
|
|
3628
|
+
|
|
3629
|
+
input RevokeInput {
|
|
3630
|
+
refreshToken: String
|
|
3631
|
+
clientMutationId: String
|
|
3632
|
+
}
|
|
3633
|
+
|
|
3634
|
+
type CreateClientPayload {
|
|
3635
|
+
lastName: String
|
|
3636
|
+
firstName: String
|
|
3637
|
+
email: String
|
|
3638
|
+
userProfile: UserProfileNode
|
|
3639
|
+
id: String
|
|
3640
|
+
|
|
3641
|
+
"""May contain more than one error for same field."""
|
|
3642
|
+
errors: [ErrorType]
|
|
3643
|
+
clientMutationId: String
|
|
3644
|
+
}
|
|
3645
|
+
|
|
3646
|
+
input CreateClientInput {
|
|
3647
|
+
lastName: String
|
|
3648
|
+
firstName: String
|
|
3649
|
+
email: String
|
|
3650
|
+
userProfile: UserProfileSerializerInput
|
|
3651
|
+
id: String
|
|
3652
|
+
team: String
|
|
3653
|
+
teamData: CreateTeamSerializerInput
|
|
3654
|
+
groups: [String]
|
|
3655
|
+
clientMutationId: String
|
|
3656
|
+
}
|
|
3657
|
+
|
|
3658
|
+
input UserProfileSerializerInput {
|
|
3659
|
+
id: String
|
|
3660
|
+
createdAt: DateTime
|
|
3661
|
+
updatedAt: DateTime
|
|
3662
|
+
address: String
|
|
3663
|
+
city: String
|
|
3664
|
+
secondaryEmail: String
|
|
3665
|
+
country: String
|
|
3666
|
+
phone: String
|
|
3667
|
+
timezone: String
|
|
3668
|
+
contactMode: String
|
|
3669
|
+
auth0Id: String
|
|
3670
|
+
profilePicture: String
|
|
3671
|
+
hourlyRate: Float
|
|
3672
|
+
salary: Int
|
|
3673
|
+
title: String
|
|
3674
|
+
titleDescription: String
|
|
3675
|
+
birthDate: Date
|
|
3676
|
+
billing: Boolean
|
|
3677
|
+
onEmailList: Boolean
|
|
3678
|
+
setupComplete: Boolean
|
|
3679
|
+
utmSource: String
|
|
3680
|
+
utmMedium: String
|
|
3681
|
+
utmCampaign: String
|
|
3682
|
+
utmTerm: String
|
|
3683
|
+
utmContent: String
|
|
3684
|
+
gclid: String
|
|
3685
|
+
fbclid: String
|
|
3686
|
+
tasksIndex: Int
|
|
3687
|
+
lastTaskRequestedAt: DateTime
|
|
3688
|
+
preferredContactMode: String
|
|
3689
|
+
company: String
|
|
3690
|
+
website: String
|
|
3691
|
+
startupSize: String
|
|
3692
|
+
startupType: JSONString
|
|
3693
|
+
leadPriorities: JSONString
|
|
3694
|
+
otherComments: String
|
|
3695
|
+
leadSource: String
|
|
3696
|
+
surveyComplete: Boolean
|
|
3697
|
+
leadFlag: Boolean
|
|
3698
|
+
status: String
|
|
3699
|
+
referredBy: String
|
|
3700
|
+
marketingChannel: String
|
|
3701
|
+
manager: String
|
|
3702
|
+
contactOwner: String
|
|
3703
|
+
}
|
|
3704
|
+
|
|
3705
|
+
input CreateTeamSerializerInput {
|
|
3706
|
+
id: String
|
|
3707
|
+
industries: [String]
|
|
3708
|
+
createdAt: DateTime
|
|
3709
|
+
updatedAt: DateTime
|
|
3710
|
+
name: String!
|
|
3711
|
+
website: String
|
|
3712
|
+
description: String
|
|
3713
|
+
slug: String
|
|
3714
|
+
credits: Float
|
|
3715
|
+
subscribed: Boolean
|
|
3716
|
+
billingEmail: String
|
|
3717
|
+
hourlyRate: Float
|
|
3718
|
+
tasksIndex: Int
|
|
3719
|
+
lastTaskRequestedAt: DateTime
|
|
3720
|
+
createdBy: String
|
|
3721
|
+
updatedBy: String
|
|
3722
|
+
stage: String
|
|
3723
|
+
subscription: String
|
|
3724
|
+
partner: String
|
|
3725
|
+
users: String
|
|
3726
|
+
}
|
|
3727
|
+
|
|
3728
|
+
type UpdateClientPayload {
|
|
3729
|
+
lastName: String
|
|
3730
|
+
firstName: String
|
|
3731
|
+
email: String
|
|
3732
|
+
userProfile: UserProfileNode
|
|
3733
|
+
id: String
|
|
3734
|
+
|
|
3735
|
+
"""May contain more than one error for same field."""
|
|
3736
|
+
errors: [ErrorType]
|
|
3737
|
+
clientMutationId: String
|
|
3738
|
+
}
|
|
3739
|
+
|
|
3740
|
+
input UpdateClientInput {
|
|
3741
|
+
lastName: String
|
|
3742
|
+
firstName: String
|
|
3743
|
+
email: String
|
|
3744
|
+
userProfile: UserProfileSerializerInput
|
|
3745
|
+
id: String
|
|
3746
|
+
team: String
|
|
3747
|
+
teamData: CreateTeamSerializerInput
|
|
3748
|
+
groups: [String]
|
|
3749
|
+
clientMutationId: String
|
|
3750
|
+
}
|
|
3751
|
+
|
|
3752
|
+
type CreateTeamMutationPayload {
|
|
3753
|
+
id: String
|
|
3754
|
+
industries: [String]
|
|
3755
|
+
createdAt: DateTime
|
|
3756
|
+
updatedAt: DateTime
|
|
3757
|
+
name: String
|
|
3758
|
+
website: String
|
|
3759
|
+
description: String
|
|
3760
|
+
slug: String
|
|
3761
|
+
credits: Float
|
|
3762
|
+
subscribed: Boolean
|
|
3763
|
+
billingEmail: String
|
|
3764
|
+
hourlyRate: Float
|
|
3765
|
+
tasksIndex: Int
|
|
3766
|
+
lastTaskRequestedAt: DateTime
|
|
3767
|
+
createdBy: String
|
|
3768
|
+
updatedBy: String
|
|
3769
|
+
stage: String
|
|
3770
|
+
subscription: String
|
|
3771
|
+
partner: String
|
|
3772
|
+
users: String
|
|
3773
|
+
|
|
3774
|
+
"""May contain more than one error for same field."""
|
|
3775
|
+
errors: [ErrorType]
|
|
3776
|
+
clientMutationId: String
|
|
3777
|
+
}
|
|
3778
|
+
|
|
3779
|
+
input CreateTeamMutationInput {
|
|
3780
|
+
id: String
|
|
3781
|
+
industries: [String]
|
|
3782
|
+
name: String!
|
|
3783
|
+
website: String
|
|
3784
|
+
description: String
|
|
3785
|
+
slug: String
|
|
3786
|
+
credits: Float
|
|
3787
|
+
subscribed: Boolean
|
|
3788
|
+
billingEmail: String
|
|
3789
|
+
hourlyRate: Float
|
|
3790
|
+
tasksIndex: Int
|
|
3791
|
+
lastTaskRequestedAt: DateTime
|
|
3792
|
+
stage: String
|
|
3793
|
+
subscription: String
|
|
3794
|
+
partner: String
|
|
3795
|
+
clientMutationId: String
|
|
3796
|
+
}
|
|
3797
|
+
|
|
3798
|
+
type UpdateTeamMutationPayload {
|
|
3799
|
+
id: String
|
|
3800
|
+
industries: [String]
|
|
3801
|
+
createdAt: DateTime
|
|
3802
|
+
updatedAt: DateTime
|
|
3803
|
+
name: String
|
|
3804
|
+
website: String
|
|
3805
|
+
description: String
|
|
3806
|
+
slug: String
|
|
3807
|
+
credits: Float
|
|
3808
|
+
subscribed: Boolean
|
|
3809
|
+
billingEmail: String
|
|
3810
|
+
hourlyRate: Float
|
|
3811
|
+
tasksIndex: Int
|
|
3812
|
+
lastTaskRequestedAt: DateTime
|
|
3813
|
+
createdBy: String
|
|
3814
|
+
updatedBy: String
|
|
3815
|
+
stage: String
|
|
3816
|
+
subscription: String
|
|
3817
|
+
partner: String
|
|
3818
|
+
users: String
|
|
3819
|
+
|
|
3820
|
+
"""May contain more than one error for same field."""
|
|
3821
|
+
errors: [ErrorType]
|
|
3822
|
+
clientMutationId: String
|
|
3823
|
+
}
|
|
3824
|
+
|
|
3825
|
+
input UpdateTeamMutationInput {
|
|
3826
|
+
id: String
|
|
3827
|
+
industries: [String]
|
|
3828
|
+
name: String
|
|
3829
|
+
website: String
|
|
3830
|
+
description: String
|
|
3831
|
+
slug: String
|
|
3832
|
+
credits: Float
|
|
3833
|
+
subscribed: Boolean
|
|
3834
|
+
billingEmail: String
|
|
3835
|
+
hourlyRate: Float
|
|
3836
|
+
tasksIndex: Int
|
|
3837
|
+
lastTaskRequestedAt: DateTime
|
|
3838
|
+
stage: String
|
|
3839
|
+
subscription: String
|
|
3840
|
+
partner: String
|
|
3841
|
+
clientMutationId: String
|
|
3842
|
+
}
|
|
3843
|
+
|
|
3844
|
+
input UserTeamInput {
|
|
3845
|
+
userId: UUID!
|
|
3846
|
+
teamId: UUID!
|
|
3847
|
+
}
|
|
3848
|
+
|
|
3849
|
+
input DeleteUserTeamInput {
|
|
3850
|
+
userId: UUID!
|
|
3851
|
+
teamId: UUID!
|
|
3852
|
+
}
|
|
3853
|
+
|
|
3854
|
+
type CreateStageMutationPayload {
|
|
3855
|
+
id: String
|
|
3856
|
+
createdAt: DateTime
|
|
3857
|
+
updatedAt: DateTime
|
|
3858
|
+
label: String
|
|
3859
|
+
description: String
|
|
3860
|
+
value: Int
|
|
3861
|
+
createdBy: String
|
|
3862
|
+
updatedBy: String
|
|
3863
|
+
|
|
3864
|
+
"""May contain more than one error for same field."""
|
|
3865
|
+
errors: [ErrorType]
|
|
3866
|
+
clientMutationId: String
|
|
3867
|
+
}
|
|
3868
|
+
|
|
3869
|
+
input CreateStageMutationInput {
|
|
3870
|
+
id: String
|
|
3871
|
+
label: String
|
|
3872
|
+
description: String
|
|
3873
|
+
value: Int
|
|
3874
|
+
clientMutationId: String
|
|
3875
|
+
}
|
|
3876
|
+
|
|
3877
|
+
type UpdateStageMutationPayload {
|
|
3878
|
+
id: String
|
|
3879
|
+
createdAt: DateTime
|
|
3880
|
+
updatedAt: DateTime
|
|
3881
|
+
label: String
|
|
3882
|
+
description: String
|
|
3883
|
+
value: Int
|
|
3884
|
+
createdBy: String
|
|
3885
|
+
updatedBy: String
|
|
3886
|
+
|
|
3887
|
+
"""May contain more than one error for same field."""
|
|
3888
|
+
errors: [ErrorType]
|
|
3889
|
+
clientMutationId: String
|
|
3890
|
+
}
|
|
3891
|
+
|
|
3892
|
+
input UpdateStageMutationInput {
|
|
3893
|
+
id: String
|
|
3894
|
+
label: String
|
|
3895
|
+
description: String
|
|
3896
|
+
value: Int
|
|
3897
|
+
clientMutationId: String
|
|
3898
|
+
}
|
|
3899
|
+
|
|
3900
|
+
type CreateIndustryMutationPayload {
|
|
3901
|
+
id: String
|
|
3902
|
+
createdAt: DateTime
|
|
3903
|
+
updatedAt: DateTime
|
|
3904
|
+
label: String
|
|
3905
|
+
value: Int
|
|
3906
|
+
|
|
3907
|
+
"""May contain more than one error for same field."""
|
|
3908
|
+
errors: [ErrorType]
|
|
3909
|
+
clientMutationId: String
|
|
3910
|
+
}
|
|
3911
|
+
|
|
3912
|
+
input CreateIndustryMutationInput {
|
|
3913
|
+
id: String
|
|
3914
|
+
label: String!
|
|
3915
|
+
value: Int
|
|
3916
|
+
clientMutationId: String
|
|
3917
|
+
}
|
|
3918
|
+
|
|
3919
|
+
type UpdateIndustryMutationPayload {
|
|
3920
|
+
id: String
|
|
3921
|
+
createdAt: DateTime
|
|
3922
|
+
updatedAt: DateTime
|
|
3923
|
+
label: String
|
|
3924
|
+
value: Int
|
|
3925
|
+
|
|
3926
|
+
"""May contain more than one error for same field."""
|
|
3927
|
+
errors: [ErrorType]
|
|
3928
|
+
clientMutationId: String
|
|
3929
|
+
}
|
|
3930
|
+
|
|
3931
|
+
input UpdateIndustryMutationInput {
|
|
3932
|
+
id: String
|
|
3933
|
+
label: String
|
|
3934
|
+
value: Int
|
|
3935
|
+
clientMutationId: String
|
|
3936
|
+
}
|
|
3937
|
+
|
|
3938
|
+
type DeleteIndustryMutationPayload {
|
|
3939
|
+
id: UUID!
|
|
3940
|
+
clientMutationId: String
|
|
3941
|
+
}
|
|
3942
|
+
|
|
3943
|
+
input DeleteIndustryMutationInput {
|
|
3944
|
+
clientMutationId: String
|
|
3945
|
+
id: UUID!
|
|
3946
|
+
}
|
|
3947
|
+
|
|
3948
|
+
type CreateUserNoteMutationPayload {
|
|
3949
|
+
id: String
|
|
3950
|
+
createdAt: DateTime
|
|
3951
|
+
updatedAt: DateTime
|
|
3952
|
+
note: String
|
|
3953
|
+
date: Date
|
|
3954
|
+
user: String
|
|
3955
|
+
notetaker: String
|
|
3956
|
+
|
|
3957
|
+
"""May contain more than one error for same field."""
|
|
3958
|
+
errors: [ErrorType]
|
|
3959
|
+
clientMutationId: String
|
|
3960
|
+
}
|
|
3961
|
+
|
|
3962
|
+
input CreateUserNoteMutationInput {
|
|
3963
|
+
id: String
|
|
3964
|
+
note: String!
|
|
3965
|
+
date: Date
|
|
3966
|
+
user: String
|
|
3967
|
+
notetaker: String
|
|
3968
|
+
clientMutationId: String
|
|
3969
|
+
}
|
|
3970
|
+
|
|
3971
|
+
type UpdateUserNoteMutationPayload {
|
|
3972
|
+
id: String
|
|
3973
|
+
createdAt: DateTime
|
|
3974
|
+
updatedAt: DateTime
|
|
3975
|
+
note: String
|
|
3976
|
+
date: Date
|
|
3977
|
+
user: String
|
|
3978
|
+
notetaker: String
|
|
3979
|
+
|
|
3980
|
+
"""May contain more than one error for same field."""
|
|
3981
|
+
errors: [ErrorType]
|
|
3982
|
+
clientMutationId: String
|
|
3983
|
+
}
|
|
3984
|
+
|
|
3985
|
+
input UpdateUserNoteMutationInput {
|
|
3986
|
+
id: String
|
|
3987
|
+
note: String
|
|
3988
|
+
date: Date
|
|
3989
|
+
user: String
|
|
3990
|
+
notetaker: String
|
|
3991
|
+
clientMutationId: String
|
|
3992
|
+
}
|
|
3993
|
+
|
|
3994
|
+
type CreateUserFeedbackMutationPayload {
|
|
3995
|
+
id: String
|
|
3996
|
+
createdAt: DateTime
|
|
3997
|
+
updatedAt: DateTime
|
|
3998
|
+
survey: String
|
|
3999
|
+
nps: Int
|
|
4000
|
+
reason: String
|
|
4001
|
+
comments: String
|
|
4002
|
+
createdBy: String
|
|
4003
|
+
updatedBy: String
|
|
4004
|
+
user: String
|
|
4005
|
+
|
|
4006
|
+
"""May contain more than one error for same field."""
|
|
4007
|
+
errors: [ErrorType]
|
|
4008
|
+
clientMutationId: String
|
|
4009
|
+
}
|
|
4010
|
+
|
|
4011
|
+
input CreateUserFeedbackMutationInput {
|
|
4012
|
+
id: String
|
|
4013
|
+
survey: String!
|
|
4014
|
+
nps: Int!
|
|
4015
|
+
reason: String
|
|
4016
|
+
comments: String
|
|
4017
|
+
user: String!
|
|
4018
|
+
clientMutationId: String
|
|
4019
|
+
}
|
|
4020
|
+
|
|
4021
|
+
type UpdateUserFeedbackMutationPayload {
|
|
4022
|
+
id: String
|
|
4023
|
+
createdAt: DateTime
|
|
4024
|
+
updatedAt: DateTime
|
|
4025
|
+
survey: String
|
|
4026
|
+
nps: Int
|
|
4027
|
+
reason: String
|
|
4028
|
+
comments: String
|
|
4029
|
+
createdBy: String
|
|
4030
|
+
updatedBy: String
|
|
4031
|
+
user: String
|
|
4032
|
+
|
|
4033
|
+
"""May contain more than one error for same field."""
|
|
4034
|
+
errors: [ErrorType]
|
|
4035
|
+
clientMutationId: String
|
|
4036
|
+
}
|
|
4037
|
+
|
|
4038
|
+
input UpdateUserFeedbackMutationInput {
|
|
4039
|
+
id: String
|
|
4040
|
+
survey: String
|
|
4041
|
+
nps: Int
|
|
4042
|
+
reason: String
|
|
4043
|
+
comments: String
|
|
4044
|
+
user: String
|
|
4045
|
+
clientMutationId: String
|
|
4046
|
+
}
|
|
4047
|
+
|
|
4048
|
+
type UpsertUserSurveyMutationPayload {
|
|
4049
|
+
email: String
|
|
4050
|
+
clientMutationId: String
|
|
4051
|
+
}
|
|
4052
|
+
|
|
4053
|
+
input UpsertUserSurveyMutationInput {
|
|
4054
|
+
clientMutationId: String
|
|
4055
|
+
email: String!
|
|
4056
|
+
firstName: String
|
|
4057
|
+
lastName: String
|
|
4058
|
+
utmSource: String
|
|
4059
|
+
utmMedium: String
|
|
4060
|
+
utmContent: String
|
|
4061
|
+
utmCampaign: String
|
|
4062
|
+
utmTerm: String
|
|
4063
|
+
gclid: String
|
|
4064
|
+
fbclid: String
|
|
4065
|
+
company: String
|
|
4066
|
+
website: String
|
|
4067
|
+
startupSize: String
|
|
4068
|
+
startupType: JSONString
|
|
4069
|
+
leadSource: String
|
|
4070
|
+
leadPriorities: JSONString
|
|
4071
|
+
otherComments: String
|
|
4072
|
+
referralCode: String
|
|
4073
|
+
preferredContactMode: String
|
|
4074
|
+
surveyComplete: Boolean
|
|
4075
|
+
}
|