From d727870c75a209b65236cd1f649db758db43f960 Mon Sep 17 00:00:00 2001 From: Jarvis Raymond Date: Thu, 5 Sep 2024 14:28:57 -0500 Subject: [PATCH 01/25] feat(discoveryEnhancedLoading): Initial commit --- src/Discovery/Discovery.tsx | 29 ++++++-- .../DiscoveryLoadingProgress.css | 18 +++++ .../DiscoveryLoadingProgressBar.tsx | 66 +++++++++++++++++++ src/Discovery/DiscoverySummary.tsx | 3 + 4 files changed, 109 insertions(+), 7 deletions(-) create mode 100644 src/Discovery/DiscoveryLoadingProgressBar/DiscoveryLoadingProgress.css create mode 100644 src/Discovery/DiscoveryLoadingProgressBar/DiscoveryLoadingProgressBar.tsx diff --git a/src/Discovery/Discovery.tsx b/src/Discovery/Discovery.tsx index da88df6e14..ea19c562ec 100644 --- a/src/Discovery/Discovery.tsx +++ b/src/Discovery/Discovery.tsx @@ -5,7 +5,7 @@ import React, { import * as JsSearch from 'js-search'; import jsonpath from 'jsonpath'; import { - Tag, Popover, Space, Collapse, Button, Dropdown, Pagination, Tooltip, + Tag, Popover, Space, Collapse, Button, Dropdown, Pagination, Tooltip, Spin, } from 'antd'; import { LockOutlined, @@ -216,6 +216,7 @@ export interface Props { onAccessSortDirectionSet: (accessSortDirection: AccessSortDirection) => any, onResourcesSelected: (resources: DiscoveryResource[]) => any, onPaginationSet: (pagination: { currentPage: number, resultsPerPage: number }) => any, + allBatchesAreLoaded: boolean, } const Discovery: React.FunctionComponent = (props: Props) => { @@ -240,6 +241,13 @@ const Discovery: React.FunctionComponent = (props: Props) => { const [discoveryTopPadding, setDiscoveryTopPadding] = useState(30); const discoveryAccessibilityLinksRef = useRef(null); + const batchesAreLoading = props.allBatchesAreLoaded === false; + const BatchLoadingSpinner = () => ( +
+ +
+ ); + const handleSearchChange = (ev) => { const { value } = ev.currentTarget; props.onSearchChange(value); @@ -666,6 +674,7 @@ const Discovery: React.FunctionComponent = (props: Props) => { {/* Header with stats */}
@@ -706,12 +715,18 @@ const Discovery: React.FunctionComponent = (props: Props) => {
- + { batchesAreLoading + ? ( + + ) + : ( + + )}
diff --git a/src/Discovery/DiscoveryLoadingProgressBar/DiscoveryLoadingProgress.css b/src/Discovery/DiscoveryLoadingProgressBar/DiscoveryLoadingProgress.css new file mode 100644 index 0000000000..acb89a79d3 --- /dev/null +++ b/src/Discovery/DiscoveryLoadingProgressBar/DiscoveryLoadingProgress.css @@ -0,0 +1,18 @@ +/* Styles related to Progress bar and adjacent components */ +.discovery-header__dropdown-tags-container { + margin-top: 15px; +} + +.discovery-header { + align-items:start; +} + +.discovery-loading-progress-bar { + text-align: 'center'; + margin-bottom: '5px'; +} + +.discovery-loading-progress-bar .discovery-header__stat-label { + line-height: 'normal'; + text-transform: 'inherit'; +} diff --git a/src/Discovery/DiscoveryLoadingProgressBar/DiscoveryLoadingProgressBar.tsx b/src/Discovery/DiscoveryLoadingProgressBar/DiscoveryLoadingProgressBar.tsx new file mode 100644 index 0000000000..2ce68ba4fe --- /dev/null +++ b/src/Discovery/DiscoveryLoadingProgressBar/DiscoveryLoadingProgressBar.tsx @@ -0,0 +1,66 @@ +import React, { useState, useEffect } from 'react'; +import { Progress } from 'antd'; + +interface DiscoveryLoadingProgressBarProps { + batchLoadingInfo: { allBatchesAreLoaded: boolean } +} + +// this should probably be done in a CSS for production: +/* +const style = document.createElement('style'); +style.type = 'text/css'; +const css = '.discovery-header__dropdown-tags-container {margin-top: 15px;} .discovery-header{align-items:start;} '; +style.innerHTML = css; +document.head.appendChild(style); +*/ + +const DiscoveryLoadingProgressBar = ({ + batchLoadingInfo, +}: DiscoveryLoadingProgressBarProps) => { + const [percent, setPercent] = useState(0); + const { allBatchesAreLoaded } = batchLoadingInfo; + const [displayProgressBar, setDisplayProgressBar] = useState(true); + + // Fake loading UI + const percentUpdateInterval = 500; + const percentIncrementAmount = 5; + useEffect(() => { + const interval = setInterval(() => { + setPercent((prevPercent) => prevPercent + percentIncrementAmount); + }, percentUpdateInterval); + return () => clearInterval(interval); + }, [percent, allBatchesAreLoaded]); + + // hide the bar with a transition delay after the batches are loaded, + // giving the browser some time to process the batch + const delayTimeBeforeHidingProgressBar = 2000; + useEffect(() => { + if (allBatchesAreLoaded) { + // Change displayProgressBar to false after delay + setTimeout(() => { + setDisplayProgressBar(false); + }, delayTimeBeforeHidingProgressBar); + } + }, [allBatchesAreLoaded]); + + return ( + + { displayProgressBar && ( +
+ +

+ Loading studies... +

+
+ )} +
+ ); +}; + +export default DiscoveryLoadingProgressBar; diff --git a/src/Discovery/DiscoverySummary.tsx b/src/Discovery/DiscoverySummary.tsx index 1cb9b8c330..47a184c20a 100644 --- a/src/Discovery/DiscoverySummary.tsx +++ b/src/Discovery/DiscoverySummary.tsx @@ -3,6 +3,7 @@ import uniq from 'lodash/uniq'; import sum from 'lodash/sum'; import jsonpath from 'jsonpath'; import { DiscoveryConfig } from './DiscoveryConfig'; +import DiscoveryLoadingProgressBar from './DiscoveryLoadingProgressBar/DiscoveryLoadingProgressBar'; /** * Check for non-numeric items in an array and convert them to numbers. @@ -55,6 +56,7 @@ const renderAggregation = (aggregation: AggregationConfig, studies: any[] | null interface Props { visibleResources: any[] | null; config: DiscoveryConfig; + allBatchesAreLoaded: boolean; } const DiscoverySummary = (props: Props) => ( @@ -72,6 +74,7 @@ const DiscoverySummary = (props: Props) => ( {aggregation.name}
+ )) From 52122cbc5b2e8748701457f0d090a37454d521e3 Mon Sep 17 00:00:00 2001 From: Jarvis Raymond Date: Thu, 5 Sep 2024 14:57:02 -0500 Subject: [PATCH 02/25] feat(discoveryEnhancedLoading): Updated all other components --- .../DiscoveryLoadingProgress.css | 8 +-- .../DiscoveryLoadingProgressBar.tsx | 17 ++---- src/Discovery/MDSUtils.jsx | 28 +++++++++- src/Discovery/aggMDSUtils.jsx | 7 +-- src/Discovery/index.tsx | 53 +++++++++++++++---- 5 files changed, 79 insertions(+), 34 deletions(-) diff --git a/src/Discovery/DiscoveryLoadingProgressBar/DiscoveryLoadingProgress.css b/src/Discovery/DiscoveryLoadingProgressBar/DiscoveryLoadingProgress.css index acb89a79d3..3959d41bb5 100644 --- a/src/Discovery/DiscoveryLoadingProgressBar/DiscoveryLoadingProgress.css +++ b/src/Discovery/DiscoveryLoadingProgressBar/DiscoveryLoadingProgress.css @@ -8,11 +8,11 @@ } .discovery-loading-progress-bar { - text-align: 'center'; - margin-bottom: '5px'; + text-align: center; + margin-bottom: 5px; } .discovery-loading-progress-bar .discovery-header__stat-label { - line-height: 'normal'; - text-transform: 'inherit'; + line-height: normal; + text-transform: inherit; } diff --git a/src/Discovery/DiscoveryLoadingProgressBar/DiscoveryLoadingProgressBar.tsx b/src/Discovery/DiscoveryLoadingProgressBar/DiscoveryLoadingProgressBar.tsx index 2ce68ba4fe..9ce4004f1b 100644 --- a/src/Discovery/DiscoveryLoadingProgressBar/DiscoveryLoadingProgressBar.tsx +++ b/src/Discovery/DiscoveryLoadingProgressBar/DiscoveryLoadingProgressBar.tsx @@ -1,27 +1,18 @@ import React, { useState, useEffect } from 'react'; import { Progress } from 'antd'; +import './DiscoveryLoadingProgress.css'; interface DiscoveryLoadingProgressBarProps { - batchLoadingInfo: { allBatchesAreLoaded: boolean } + allBatchesAreLoaded: boolean; } -// this should probably be done in a CSS for production: -/* -const style = document.createElement('style'); -style.type = 'text/css'; -const css = '.discovery-header__dropdown-tags-container {margin-top: 15px;} .discovery-header{align-items:start;} '; -style.innerHTML = css; -document.head.appendChild(style); -*/ - const DiscoveryLoadingProgressBar = ({ - batchLoadingInfo, + allBatchesAreLoaded, }: DiscoveryLoadingProgressBarProps) => { const [percent, setPercent] = useState(0); - const { allBatchesAreLoaded } = batchLoadingInfo; const [displayProgressBar, setDisplayProgressBar] = useState(true); - // Fake loading UI + // Auto incrementing percent logic const percentUpdateInterval = 500; const percentIncrementAmount = 5; useEffect(() => { diff --git a/src/Discovery/MDSUtils.jsx b/src/Discovery/MDSUtils.jsx index 1e8b6f0c94..f2570bd1e8 100644 --- a/src/Discovery/MDSUtils.jsx +++ b/src/Discovery/MDSUtils.jsx @@ -3,7 +3,7 @@ import { mdsURL, studyRegistrationConfig } from '../localconf'; const LIMIT = 2000; // required or else mds defaults to returning 10 records const STUDY_DATA_FIELD = 'gen3_discovery'; // field in the MDS response that contains the study data -const loadStudiesFromMDS = async (guidType = 'discovery_metadata') => { +export const loadStudiesFromMDS = async (guidType = 'discovery_metadata') => { try { let allStudies = []; let offset = 0; @@ -43,4 +43,28 @@ const loadStudiesFromMDS = async (guidType = 'discovery_metadata') => { } }; -export default loadStudiesFromMDS; +export const getSomeStudiesFromMDS = async (guidType = 'discovery_metadata', numberOfStudies = 10) => { + try { + let allStudies = []; + // request up to LIMIT studies from MDS at a time. + const url = `${mdsURL}?data=True&_guid_type=${guidType}&limit=${numberOfStudies}`; + const res = await fetch(url); + if (res.status !== 200) { + throw new Error(`Request for study data at ${url} failed. Response: ${JSON.stringify(res, null, 2)}`); + } + // eslint-disable-next-line no-await-in-loop + const jsonResponse = await res.json(); + const studies = Object.values(jsonResponse).map((entry) => { + const study = { ...entry[STUDY_DATA_FIELD] }; + // copy VLMD info if exists + if (studyRegistrationConfig?.dataDictionaryField && entry[studyRegistrationConfig.dataDictionaryField]) { + study[studyRegistrationConfig.dataDictionaryField] = entry[studyRegistrationConfig.dataDictionaryField]; + } + return study; + }); + allStudies = allStudies.concat(studies); + return allStudies; + } catch (err) { + throw new Error(`Request for study data failed: ${err}`); + } +}; diff --git a/src/Discovery/aggMDSUtils.jsx b/src/Discovery/aggMDSUtils.jsx index 31859a592d..04893e0cb6 100644 --- a/src/Discovery/aggMDSUtils.jsx +++ b/src/Discovery/aggMDSUtils.jsx @@ -64,18 +64,13 @@ const loadStudiesFromAggMDSRequests = async (offset, limit) => { allStudies = allStudies.concat(editedStudies); }); - return allStudies; }; -const loadStudiesFromAggMDS = async () => { +const loadStudiesFromAggMDS = async (limit=2000) => { // Retrieve from aggregate MDS - const offset = 0; // For pagination - const limit = 2000; // Total number of rows requested - const studies = await loadStudiesFromAggMDSRequests(offset, limit); - return studies; }; diff --git a/src/Discovery/index.tsx b/src/Discovery/index.tsx index 05ad7464de..e3a8ff34d8 100644 --- a/src/Discovery/index.tsx +++ b/src/Discovery/index.tsx @@ -1,7 +1,7 @@ import React, { useState, useEffect } from 'react'; import { connect } from 'react-redux'; import _ from 'lodash'; - +import { loadStudiesFromMDS, getSomeStudiesFromMDS } from './MDSUtils'; import Discovery, { AccessLevel, AccessSortDirection, DiscoveryResource } from './Discovery'; import { DiscoveryConfig } from './DiscoveryConfig'; import { userHasMethodForServiceOnResource } from '../authMappingUtils'; @@ -10,7 +10,6 @@ import { } from '../localconf'; import isEnabled from '../helpers/featureFlags'; import loadStudiesFromAggMDS from './aggMDSUtils'; -import loadStudiesFromMDS from './MDSUtils'; const populateStudiesWithConfigInfo = (studies, config) => { if (!config.studies) { @@ -73,21 +72,53 @@ const DiscoveryWithMDSBackend: React.FC<{ throw new Error('Could not find configuration for Discovery page. Check the portal config.'); } + /* + Downloads and processes studies in two seperate batches + to improve load time & usability + Initially uses a smaller batch to load interface quickly + Then a batch with all the studies + */ + const [studiesBatchCount, setStudiesBatchCount] = useState(0); + const expectedNumberOfTotalBatches = 2; + const numberOfStudiesForSmallerBatch = 5; + const numberOfStudiesForAllStudiesBatch = 2000; + useEffect(() => { + // For batchloading, first update the studiesBatchCount to enable calling of different batch sizes + // with different parameters + if (studiesBatchCount < expectedNumberOfTotalBatches) setStudiesBatchCount(studiesBatchCount + 1); const studyRegistrationValidationField = studyRegistrationConfig?.studyRegistrationValidationField; async function fetchRawStudies() { - let loadStudiesFunction; + let loadStudiesFunction: Function; + let loadStudiesParameters: any; if (isEnabled('discoveryUseAggMDS')) { loadStudiesFunction = loadStudiesFromAggMDS; + loadStudiesParameters = studiesBatchCount === 1 + ? numberOfStudiesForSmallerBatch + : numberOfStudiesForAllStudiesBatch; } else { loadStudiesFunction = loadStudiesFromMDS; + loadStudiesParameters = props.config?.features?.guidType; } - const rawStudiesRegistered = await loadStudiesFunction(props.config?.features?.guidType); - let rawStudiesUnregistered = []; + const rawStudiesRegistered = await loadStudiesFunction( + loadStudiesParameters, + ); + let rawStudiesUnregistered: any[] = []; if (isEnabled('studyRegistration')) { - rawStudiesUnregistered = await loadStudiesFromMDS('unregistered_discovery_metadata'); - rawStudiesUnregistered = rawStudiesUnregistered - .map((unregisteredStudy) => ({ ...unregisteredStudy, [studyRegistrationValidationField]: false })); + // Load fewer raw studies if on the first studies batch + // Otherwise load them all + rawStudiesUnregistered = studiesBatchCount === 1 + ? (rawStudiesUnregistered = await getSomeStudiesFromMDS( + 'unregistered_discovery_metadata', + numberOfStudiesForSmallerBatch, + )) + : await loadStudiesFromMDS('unregistered_discovery_metadata'); + rawStudiesUnregistered = rawStudiesUnregistered.map( + (unregisteredStudy) => ({ + ...unregisteredStudy, + [studyRegistrationValidationField]: false, + }), + ); } return _.union(rawStudiesRegistered, rawStudiesUnregistered); } @@ -167,16 +198,20 @@ const DiscoveryWithMDSBackend: React.FC<{ // indicate discovery tag is active even if we didn't click a button to get here props.onDiscoveryPageActive(); - }, []); + }, [props, studiesBatchCount]); let studyRegistrationValidationField = studyRegistrationConfig?.studyRegistrationValidationField; if (!isEnabled('studyRegistration')) { studyRegistrationValidationField = undefined; } + const allBatchesAreLoaded = studies === null + ? false + : (studies as Array)?.length > numberOfStudiesForSmallerBatch * 2; return ( ); From b22ae1b6e9a90bc3ff0d835cc24c0c9daabce02b Mon Sep 17 00:00:00 2001 From: Jarvis Raymond Date: Thu, 5 Sep 2024 16:15:50 -0500 Subject: [PATCH 03/25] feat(discoveryEnhancedLoading): Updated CSS --- src/Discovery/Discovery.css | 3 ++- .../DiscoveryLoadingProgress.css | 9 --------- 2 files changed, 2 insertions(+), 10 deletions(-) diff --git a/src/Discovery/Discovery.css b/src/Discovery/Discovery.css index 9a4ff31abb..a6edffa818 100644 --- a/src/Discovery/Discovery.css +++ b/src/Discovery/Discovery.css @@ -44,7 +44,7 @@ margin-bottom: 16px; display: flex; flex-direction: row; - align-items: center; + align-items: start; } .discovery-header__stats-container { @@ -104,6 +104,7 @@ .discovery-header__dropdown-tags-container { flex: 3 1 60%; height: 90%; + margin-top: 15px; } .discovery-header__tags-header { diff --git a/src/Discovery/DiscoveryLoadingProgressBar/DiscoveryLoadingProgress.css b/src/Discovery/DiscoveryLoadingProgressBar/DiscoveryLoadingProgress.css index 3959d41bb5..cc65b409d6 100644 --- a/src/Discovery/DiscoveryLoadingProgressBar/DiscoveryLoadingProgress.css +++ b/src/Discovery/DiscoveryLoadingProgressBar/DiscoveryLoadingProgress.css @@ -1,12 +1,3 @@ -/* Styles related to Progress bar and adjacent components */ -.discovery-header__dropdown-tags-container { - margin-top: 15px; -} - -.discovery-header { - align-items:start; -} - .discovery-loading-progress-bar { text-align: center; margin-bottom: 5px; From cfbc79ac48766db085eeeb5e70b17f4eb9c85c6b Mon Sep 17 00:00:00 2001 From: Jarvis Raymond Date: Thu, 5 Sep 2024 16:25:01 -0500 Subject: [PATCH 04/25] feat(discoveryEnhancedLoading): added logic to conditional chnage numberOfStudiesForSmallerBatch --- .../DiscoveryLoadingProgressBar.tsx | 7 +++++-- src/Discovery/MDSUtils.jsx | 6 +++--- src/Discovery/index.tsx | 3 ++- 3 files changed, 10 insertions(+), 6 deletions(-) diff --git a/src/Discovery/DiscoveryLoadingProgressBar/DiscoveryLoadingProgressBar.tsx b/src/Discovery/DiscoveryLoadingProgressBar/DiscoveryLoadingProgressBar.tsx index 9ce4004f1b..f7a4383198 100644 --- a/src/Discovery/DiscoveryLoadingProgressBar/DiscoveryLoadingProgressBar.tsx +++ b/src/Discovery/DiscoveryLoadingProgressBar/DiscoveryLoadingProgressBar.tsx @@ -22,7 +22,7 @@ const DiscoveryLoadingProgressBar = ({ return () => clearInterval(interval); }, [percent, allBatchesAreLoaded]); - // hide the bar with a transition delay after the batches are loaded, + // hide the bar after a delay after the batches are loaded, // giving the browser some time to process the batch const delayTimeBeforeHidingProgressBar = 2000; useEffect(() => { @@ -37,7 +37,10 @@ const DiscoveryLoadingProgressBar = ({ return ( { displayProgressBar && ( -
+
{ export const getSomeStudiesFromMDS = async (guidType = 'discovery_metadata', numberOfStudies = 10) => { try { - let allStudies = []; + let someStudies = []; // request up to LIMIT studies from MDS at a time. const url = `${mdsURL}?data=True&_guid_type=${guidType}&limit=${numberOfStudies}`; const res = await fetch(url); @@ -62,8 +62,8 @@ export const getSomeStudiesFromMDS = async (guidType = 'discovery_metadata', num } return study; }); - allStudies = allStudies.concat(studies); - return allStudies; + someStudies = someStudies.concat(studies); + return someStudies; } catch (err) { throw new Error(`Request for study data failed: ${err}`); } diff --git a/src/Discovery/index.tsx b/src/Discovery/index.tsx index e3a8ff34d8..4b2370e852 100644 --- a/src/Discovery/index.tsx +++ b/src/Discovery/index.tsx @@ -80,7 +80,8 @@ const DiscoveryWithMDSBackend: React.FC<{ */ const [studiesBatchCount, setStudiesBatchCount] = useState(0); const expectedNumberOfTotalBatches = 2; - const numberOfStudiesForSmallerBatch = 5; + // if loading with both unregistered and registered studies, load 5 for each (10 total) + const numberOfStudiesForSmallerBatch = isEnabled('studyRegistration') ? 5 : 10; const numberOfStudiesForAllStudiesBatch = 2000; useEffect(() => { From 560a573720682ccb8f15b276232ade3dab87d9a2 Mon Sep 17 00:00:00 2001 From: Jarvis Raymond Date: Fri, 13 Sep 2024 08:48:36 -0500 Subject: [PATCH 05/25] feat(discoveryEnhancedLoading): Updated var name to numberOfBatchesLoaded to improve clarity --- src/Discovery/index.tsx | 50 ++++++++++++++++++++++++----------------- 1 file changed, 30 insertions(+), 20 deletions(-) diff --git a/src/Discovery/index.tsx b/src/Discovery/index.tsx index 4b2370e852..d88b5fe56a 100644 --- a/src/Discovery/index.tsx +++ b/src/Discovery/index.tsx @@ -1,7 +1,6 @@ import React, { useState, useEffect } from 'react'; import { connect } from 'react-redux'; import _ from 'lodash'; -import { loadStudiesFromMDS, getSomeStudiesFromMDS } from './MDSUtils'; import Discovery, { AccessLevel, AccessSortDirection, DiscoveryResource } from './Discovery'; import { DiscoveryConfig } from './DiscoveryConfig'; import { userHasMethodForServiceOnResource } from '../authMappingUtils'; @@ -10,6 +9,7 @@ import { } from '../localconf'; import isEnabled from '../helpers/featureFlags'; import loadStudiesFromAggMDS from './aggMDSUtils'; +import { loadStudiesFromMDS, getSomeStudiesFromMDS } from './MDSUtils'; const populateStudiesWithConfigInfo = (studies, config) => { if (!config.studies) { @@ -72,33 +72,32 @@ const DiscoveryWithMDSBackend: React.FC<{ throw new Error('Could not find configuration for Discovery page. Check the portal config.'); } - /* - Downloads and processes studies in two seperate batches - to improve load time & usability - Initially uses a smaller batch to load interface quickly - Then a batch with all the studies - */ - const [studiesBatchCount, setStudiesBatchCount] = useState(0); + // Downloads and processes studies in two seperate batches + // to improve load time & usability + // Initially uses a smaller batch to load interface quickly + // Then a batch with all the studies + const [numberOfBatchesLoaded, setNumberOfBatchesLoaded] = useState(0); const expectedNumberOfTotalBatches = 2; - // if loading with both unregistered and registered studies, load 5 for each (10 total) - const numberOfStudiesForSmallerBatch = isEnabled('studyRegistration') ? 5 : 10; + const numberOfStudiesForSmallerBatch = 5; const numberOfStudiesForAllStudiesBatch = 2000; useEffect(() => { - // For batchloading, first update the studiesBatchCount to enable calling of different batch sizes + // If batch loading is Enabled, update the numberOfBatchesLoaded to enable calling of different batch sizes // with different parameters - if (studiesBatchCount < expectedNumberOfTotalBatches) setStudiesBatchCount(studiesBatchCount + 1); + if (numberOfBatchesLoaded < expectedNumberOfTotalBatches) setNumberOfBatchesLoaded(numberOfBatchesLoaded + 1); + const studyRegistrationValidationField = studyRegistrationConfig?.studyRegistrationValidationField; async function fetchRawStudies() { + const startTime = performance.now(); let loadStudiesFunction: Function; let loadStudiesParameters: any; if (isEnabled('discoveryUseAggMDS')) { loadStudiesFunction = loadStudiesFromAggMDS; - loadStudiesParameters = studiesBatchCount === 1 + loadStudiesParameters = numberOfBatchesLoaded === 1 ? numberOfStudiesForSmallerBatch : numberOfStudiesForAllStudiesBatch; } else { - loadStudiesFunction = loadStudiesFromMDS; + loadStudiesFunction = getSomeStudiesFromMDS; loadStudiesParameters = props.config?.features?.guidType; } const rawStudiesRegistered = await loadStudiesFunction( @@ -108,7 +107,7 @@ const DiscoveryWithMDSBackend: React.FC<{ if (isEnabled('studyRegistration')) { // Load fewer raw studies if on the first studies batch // Otherwise load them all - rawStudiesUnregistered = studiesBatchCount === 1 + rawStudiesUnregistered = numberOfBatchesLoaded === 1 ? (rawStudiesUnregistered = await getSomeStudiesFromMDS( 'unregistered_discovery_metadata', numberOfStudiesForSmallerBatch, @@ -121,6 +120,10 @@ const DiscoveryWithMDSBackend: React.FC<{ }), ); } + const endTime = performance.now(); + console.log( + `Call to fetchRawStudies took ${endTime - startTime} milliseconds`, + ); return _.union(rawStudiesRegistered, rawStudiesUnregistered); } fetchRawStudies().then((rawStudies) => { @@ -199,20 +202,27 @@ const DiscoveryWithMDSBackend: React.FC<{ // indicate discovery tag is active even if we didn't click a button to get here props.onDiscoveryPageActive(); - }, [props, studiesBatchCount]); + }, [props, numberOfBatchesLoaded]); let studyRegistrationValidationField = studyRegistrationConfig?.studyRegistrationValidationField; if (!isEnabled('studyRegistration')) { studyRegistrationValidationField = undefined; } - const allBatchesAreLoaded = studies === null - ? false - : (studies as Array)?.length > numberOfStudiesForSmallerBatch * 2; + + const batchLoadingInfo = { + // All batches all loaded if the studies are not null and + // their length is great than the studies for the smaller batches + // from loadStudiesFromAggMDS and getSomeStudiesFromMDS + allBatchesAreLoaded: studies === null + ? false + : studies?.length > numberOfStudiesForSmallerBatch * 2, + }; + return ( ); From fac0c1d67ec899a4b108fa11a4b3cd5f0045c166 Mon Sep 17 00:00:00 2001 From: Jarvis Raymond Date: Fri, 13 Sep 2024 09:20:10 -0500 Subject: [PATCH 06/25] feat(discoveryEnhancedLoading): added var totalNumberOfStudiesFromSmallBatches to remove magic number --- src/Discovery/index.tsx | 25 +++++++++---------------- 1 file changed, 9 insertions(+), 16 deletions(-) diff --git a/src/Discovery/index.tsx b/src/Discovery/index.tsx index d88b5fe56a..f185979e1b 100644 --- a/src/Discovery/index.tsx +++ b/src/Discovery/index.tsx @@ -78,7 +78,10 @@ const DiscoveryWithMDSBackend: React.FC<{ // Then a batch with all the studies const [numberOfBatchesLoaded, setNumberOfBatchesLoaded] = useState(0); const expectedNumberOfTotalBatches = 2; - const numberOfStudiesForSmallerBatch = 5; + // if loading with both unregistered and registered studies, load 5 for each (10 total) + const numberOfStudiesForSmallerBatch = isEnabled('studyRegistration') ? 5 : 10; + const numberOfSmallBatchesLoaded = isEnabled('studyRegistration') ? 2 : 1; + const totalNumberOfStudiesFromSmallBatches = numberOfStudiesForSmallerBatch * numberOfSmallBatchesLoaded; const numberOfStudiesForAllStudiesBatch = 2000; useEffect(() => { @@ -88,7 +91,6 @@ const DiscoveryWithMDSBackend: React.FC<{ const studyRegistrationValidationField = studyRegistrationConfig?.studyRegistrationValidationField; async function fetchRawStudies() { - const startTime = performance.now(); let loadStudiesFunction: Function; let loadStudiesParameters: any; if (isEnabled('discoveryUseAggMDS')) { @@ -120,10 +122,6 @@ const DiscoveryWithMDSBackend: React.FC<{ }), ); } - const endTime = performance.now(); - console.log( - `Call to fetchRawStudies took ${endTime - startTime} milliseconds`, - ); return _.union(rawStudiesRegistered, rawStudiesUnregistered); } fetchRawStudies().then((rawStudies) => { @@ -202,27 +200,22 @@ const DiscoveryWithMDSBackend: React.FC<{ // indicate discovery tag is active even if we didn't click a button to get here props.onDiscoveryPageActive(); - }, [props, numberOfBatchesLoaded]); + }, [props, numberOfBatchesLoaded, numberOfStudiesForSmallerBatch]); let studyRegistrationValidationField = studyRegistrationConfig?.studyRegistrationValidationField; if (!isEnabled('studyRegistration')) { studyRegistrationValidationField = undefined; } - const batchLoadingInfo = { - // All batches all loaded if the studies are not null and - // their length is great than the studies for the smaller batches - // from loadStudiesFromAggMDS and getSomeStudiesFromMDS - allBatchesAreLoaded: studies === null - ? false - : studies?.length > numberOfStudiesForSmallerBatch * 2, - }; + const allBatchesAreLoaded = studies === null + ? false + : (studies as Array)?.length > totalNumberOfStudiesFromSmallBatches; return ( ); From 624e2add6471528271ddef8837a4887e847daccf Mon Sep 17 00:00:00 2001 From: Jarvis Raymond Date: Fri, 13 Sep 2024 16:01:16 -0500 Subject: [PATCH 07/25] feat(discoveryEnhancedLoading): started unit test for index.tsx --- src/Discovery/MDSUtils.jsx | 9 +-- src/Discovery/index.test.tsx | 129 +++++++++++++++++++++++++++++++++++ 2 files changed, 134 insertions(+), 4 deletions(-) create mode 100644 src/Discovery/index.test.tsx diff --git a/src/Discovery/MDSUtils.jsx b/src/Discovery/MDSUtils.jsx index fd51704cee..e2c291821f 100644 --- a/src/Discovery/MDSUtils.jsx +++ b/src/Discovery/MDSUtils.jsx @@ -45,19 +45,20 @@ export const loadStudiesFromMDS = async (guidType = 'discovery_metadata') => { export const getSomeStudiesFromMDS = async (guidType = 'discovery_metadata', numberOfStudies = 10) => { try { - let someStudies = []; - // request up to LIMIT studies from MDS at a time. + let someStudies = []; const url = `${mdsURL}?data=True&_guid_type=${guidType}&limit=${numberOfStudies}`; const res = await fetch(url); if (res.status !== 200) { - throw new Error(`Request for study data at ${url} failed. Response: ${JSON.stringify(res, null, 2)}`); + throw new Error(`Request for study data at ${url} failed. + Response: ${JSON.stringify(res, null, 2)}`); } // eslint-disable-next-line no-await-in-loop const jsonResponse = await res.json(); const studies = Object.values(jsonResponse).map((entry) => { const study = { ...entry[STUDY_DATA_FIELD] }; // copy VLMD info if exists - if (studyRegistrationConfig?.dataDictionaryField && entry[studyRegistrationConfig.dataDictionaryField]) { + if (studyRegistrationConfig?.dataDictionaryField && + entry[studyRegistrationConfig.dataDictionaryField]) { study[studyRegistrationConfig.dataDictionaryField] = entry[studyRegistrationConfig.dataDictionaryField]; } return study; diff --git a/src/Discovery/index.test.tsx b/src/Discovery/index.test.tsx new file mode 100644 index 0000000000..fe503ba565 --- /dev/null +++ b/src/Discovery/index.test.tsx @@ -0,0 +1,129 @@ +// DiscoveryWithMDSBackend.test.js + +import React from 'react'; +import { render, screen, waitFor, act } from '@testing-library/react'; +import { Provider } from 'react-redux'; +import { createStore } from 'redux'; +import DiscoveryWithMDSBackend from './DiscoveryWithMDSBackend'; +import rootReducer from '../reducers'; // Adjust the import to match your root reducer + +// Mock the dependencies +jest.mock('../helpers/featureFlags', () => ({ + __esModule: true, + default: jest.fn(() => true), +})); + +jest.mock('./aggMDSUtils', () => ({ + loadStudiesFromAggMDS: jest.fn(), +})); + +jest.mock('./MDSUtils', () => ({ + getSomeStudiesFromMDS: jest.fn(), + loadStudiesFromMDS: jest.fn(), +})); + +jest.mock('../authMappingUtils', () => ({ + userHasMethodForServiceOnResource: jest.fn(() => true), +})); + +// Create a mock store +const mockStore = createStore(rootReducer, { + userAuthMapping: {}, + userAggregateAuthMappings: {}, + discovery: {}, +}); + +const setup = (props) => { + return render( + + + + ); +}; + +describe('DiscoveryWithMDSBackend', () => { + const defaultProps = { + userAggregateAuthMappings: {}, + config: { + features: { authorization: { enabled: false } }, + minimalFieldMapping: {}, + }, + awaitingDownload: false, + selectedResources: [], + pagination: { currentPage: 1, resultsPerPage: 10 }, + selectedTags: [], + searchTerm: '', + accessSortDirection: 'asc', + accessFilters: {}, + onAdvancedSearch: jest.fn(), + onSearchChange: jest.fn(), + onTagsSelected: jest.fn(), + onAccessFilterSet: jest.fn(), + onAccessSortDirectionSet: jest.fn(), + onPaginationSet: jest.fn(), + onResourcesSelected: jest.fn(), + onDiscoveryPageActive: jest.fn(), + onRedirectForAction: jest.fn(), + }; + + test('changes number of batches based on props', async () => { + // Define different sets of props to test different conditions + const propsWithStudyRegistration = { + ...defaultProps, + config: { + ...defaultProps.config, + features: { ...defaultProps.config.features, studyRegistration: true }, + }, + }; + + const propsWithoutStudyRegistration = { + ...defaultProps, + config: { + ...defaultProps.config, + features: { ...defaultProps.config.features, studyRegistration: false }, + }, + }; + + const mockStudies = Array.from({ length: 12 }, (_, i) => ({ + id: `${i}`, + name: `Study ${i + 1}`, + })); + require('./aggMDSUtils').loadStudiesFromAggMDS.mockResolvedValue( + mockStudies + ); + require('./MDSUtils').getSomeStudiesFromMDS.mockResolvedValue(mockStudies); + + // First, test with study registration enabled + setup(propsWithStudyRegistration); + + await act(async () => { + await waitFor(() => { + expect(screen.getByText('Study 12')).toBeInTheDocument(); + }); + }); + + // Verify that the number of batches loaded is as expected when study registration is enabled + expect(require('./aggMDSUtils').loadStudiesFromAggMDS).toHaveBeenCalledWith( + 5 + ); // smaller batch + expect(require('./MDSUtils').getSomeStudiesFromMDS).toHaveBeenCalledWith( + 'unregistered_discovery_metadata', + 5 + ); // unregistered studies batch + + // Next, test with study registration disabled + setup(propsWithoutStudyRegistration); + + await act(async () => { + await waitFor(() => { + expect(screen.getByText('Study 12')).toBeInTheDocument(); + }); + }); + + // Verify that the number of batches loaded is as expected when study registration is disabled + expect(require('./aggMDSUtils').loadStudiesFromAggMDS).toHaveBeenCalledWith( + 10 + ); // smaller batch + expect(require('./MDSUtils').getSomeStudiesFromMDS).not.toHaveBeenCalled(); // no unregistered studies batch + }); +}); From 1f533f446e4c3b9bb167ba26a3e3baf5e5e987d8 Mon Sep 17 00:00:00 2001 From: Jarvis Raymond Date: Fri, 13 Sep 2024 16:12:16 -0500 Subject: [PATCH 08/25] feat(discoveryEnhancedLoading): updated unit test for index.tsx --- src/Discovery/index.test.tsx | 30 +++++++++++++++++++++--------- 1 file changed, 21 insertions(+), 9 deletions(-) diff --git a/src/Discovery/index.test.tsx b/src/Discovery/index.test.tsx index fe503ba565..ab396d9940 100644 --- a/src/Discovery/index.test.tsx +++ b/src/Discovery/index.test.tsx @@ -1,11 +1,9 @@ -// DiscoveryWithMDSBackend.test.js - import React from 'react'; import { render, screen, waitFor, act } from '@testing-library/react'; import { Provider } from 'react-redux'; -import { createStore } from 'redux'; -import DiscoveryWithMDSBackend from './DiscoveryWithMDSBackend'; +import DiscoveryWithMDSBackend from './index.tsx'; import rootReducer from '../reducers'; // Adjust the import to match your root reducer +import { useLocation } from 'react-router-dom/cjs/react-router-dom.min.js'; // Mock the dependencies jest.mock('../helpers/featureFlags', () => ({ @@ -27,21 +25,35 @@ jest.mock('../authMappingUtils', () => ({ })); // Create a mock store -const mockStore = createStore(rootReducer, { + +const mockStore = { userAuthMapping: {}, userAggregateAuthMappings: {}, discovery: {}, -}); + subscribe: {}, + getState: () => ({ + userAggregateAuthMappings: false, + }), +}; -const setup = (props) => { - return render( +const setup = (props) => + render( ); -}; describe('DiscoveryWithMDSBackend', () => { + // Mock window.location + beforeAll(() => { + delete window.location; // Delete the original window.location + window.location = { + search: '', + assign: jest.fn(), + reload: jest.fn(), + replace: jest.fn(), + }; + }); const defaultProps = { userAggregateAuthMappings: {}, config: { From dc64792583f4d94bf7cc861706908fa0ff61a46e Mon Sep 17 00:00:00 2001 From: Jarvis Raymond Date: Fri, 20 Sep 2024 11:07:18 -0500 Subject: [PATCH 09/25] feat(discoveryEnhancedLoading): Committing progress on index.tsx unit test --- .../DiscoveryLoadingProgressBar.test.tsx | 18 ++ .../DiscoveryLoadingProgressBar.tsx | 6 +- src/Discovery/index.test.tsx | 240 +++++++++--------- src/Discovery/index.tsx | 5 +- 4 files changed, 141 insertions(+), 128 deletions(-) create mode 100644 src/Discovery/DiscoveryLoadingProgressBar/DiscoveryLoadingProgressBar.test.tsx diff --git a/src/Discovery/DiscoveryLoadingProgressBar/DiscoveryLoadingProgressBar.test.tsx b/src/Discovery/DiscoveryLoadingProgressBar/DiscoveryLoadingProgressBar.test.tsx new file mode 100644 index 0000000000..ea34d2a62f --- /dev/null +++ b/src/Discovery/DiscoveryLoadingProgressBar/DiscoveryLoadingProgressBar.test.tsx @@ -0,0 +1,18 @@ +import React from 'react'; +import { render, screen } from '@testing-library/react'; +import '@testing-library/jest-dom'; +import DiscoveryLoadingProgressBar from './DiscoveryLoadingProgressBar'; + +describe('DiscoveryLoadingProgressBar', () => { + it('renders the progress bar and loading text when displayProgressBar is true', () => { + render(); + expect(screen.getByRole('progressbar')).toBeInTheDocument(); + expect(screen.getByText('Loading studies...')).toBeInTheDocument(); + }); + + it('sets progress to 100% when allBatchesAreLoaded is true', () => { + render(); + const progressBar = screen.getByRole('progressbar'); + expect(progressBar).toHaveAttribute('aria-valuenow', '100'); + }); +}); diff --git a/src/Discovery/DiscoveryLoadingProgressBar/DiscoveryLoadingProgressBar.tsx b/src/Discovery/DiscoveryLoadingProgressBar/DiscoveryLoadingProgressBar.tsx index f7a4383198..1d99d7c423 100644 --- a/src/Discovery/DiscoveryLoadingProgressBar/DiscoveryLoadingProgressBar.tsx +++ b/src/Discovery/DiscoveryLoadingProgressBar/DiscoveryLoadingProgressBar.tsx @@ -26,9 +26,12 @@ const DiscoveryLoadingProgressBar = ({ // giving the browser some time to process the batch const delayTimeBeforeHidingProgressBar = 2000; useEffect(() => { + console.log('useeffect achieved!'); if (allBatchesAreLoaded) { + setPercent(100); // Change displayProgressBar to false after delay setTimeout(() => { + console.log('timeout achieved!'); setDisplayProgressBar(false); }, delayTimeBeforeHidingProgressBar); } @@ -44,9 +47,10 @@ const DiscoveryLoadingProgressBar = ({

Loading studies... diff --git a/src/Discovery/index.test.tsx b/src/Discovery/index.test.tsx index ab396d9940..a28f2d77ce 100644 --- a/src/Discovery/index.test.tsx +++ b/src/Discovery/index.test.tsx @@ -1,141 +1,131 @@ import React from 'react'; -import { render, screen, waitFor, act } from '@testing-library/react'; +import { shallow, mount } from 'enzyme'; import { Provider } from 'react-redux'; +import { StaticRouter } from 'react-router-dom'; +import configureMockStore from 'redux-mock-store'; +import mockData from './__mocks__/mock_mds_studies.json'; +import mockConfig from './__mocks__/mock_config.json'; import DiscoveryWithMDSBackend from './index.tsx'; -import rootReducer from '../reducers'; // Adjust the import to match your root reducer -import { useLocation } from 'react-router-dom/cjs/react-router-dom.min.js'; +import { DiscoveryConfig } from './DiscoveryConfig'; +import { AccessLevel, AccessSortDirection } from './Discovery'; +import * as MDSUtils from './MDSUtils'; +import * as aggMDSUtils from './aggMDSUtils'; + +const mockStore = configureMockStore(); +const initStoreData = { + user: { + username: 'mock_user', + }, + discovery: { + selectedResources: [], + actionToResume: null, + accessFilters: { + [AccessLevel.ACCESSIBLE]: true, + [AccessLevel.UNACCESSIBLE]: true, + [AccessLevel.WAITING]: true, + [AccessLevel.NOT_AVAILABLE]: true, + }, + selectedTags: {}, + pagination: { + resultsPerPage: 10, + currentPage: 1, + }, + accessSortDirection: AccessSortDirection.DESCENDING, + }, +}; -// Mock the dependencies -jest.mock('../helpers/featureFlags', () => ({ - __esModule: true, - default: jest.fn(() => true), -})); +const defaultProps = { + selectedResources: [1, 2, 3], + userAggregateAuthMappings: {}, + config: { + features: { authorization: { enabled: false } }, + minimalFieldMapping: {}, + }, + awaitingDownload: false, + pagination: { currentPage: 1, resultsPerPage: 10 }, + selectedTags: [], + searchTerm: '', + accessSortDirection: 'asc', + accessFilters: {}, + onAdvancedSearch: jest.fn(), + onSearchChange: jest.fn(), + onTagsSelected: jest.fn(), + onAccessFilterSet: jest.fn(), + onAccessSortDirectionSet: jest.fn(), + onPaginationSet: jest.fn(), + onResourcesSelected: jest.fn(), + onDiscoveryPageActive: jest.fn(), + onRedirectForAction: jest.fn(), +}; -jest.mock('./aggMDSUtils', () => ({ - loadStudiesFromAggMDS: jest.fn(), -})); +const getIndexComponent = (store, config: DiscoveryConfig, params = {}) => ( + + + + + +); + +// This mock is required to avoid errors when rendering the Discovery page +// with enzyme's `mount` method (which uses jsdom). (antd components use window.matchMedia) +// See https://jestjs.io/docs/en/manual-mocks#mocking-methods-which-are-not-implemented-in-jsdom +Object.defineProperty(window, 'matchMedia', { + writable: true, + value: jest.fn().mockImplementation((query) => ({ + matches: false, + media: query, + onchange: null, + addListener: jest.fn(), // Deprecated + removeListener: jest.fn(), // Deprecated + addEventListener: jest.fn(), + removeEventListener: jest.fn(), + dispatchEvent: jest.fn(), + })), +}); + +let testConfig: DiscoveryConfig; +beforeEach(() => { + testConfig = mockConfig as DiscoveryConfig; +}); + +// Mock the loadStudiesFromAggMDS and getSomeStudiesFromMDS functions jest.mock('./MDSUtils', () => ({ - getSomeStudiesFromMDS: jest.fn(), loadStudiesFromMDS: jest.fn(), + getSomeStudiesFromMDS: jest.fn(), })); -jest.mock('../authMappingUtils', () => ({ - userHasMethodForServiceOnResource: jest.fn(() => true), +jest.mock('./aggMDSUtils', () => ({ + loadStudiesFromAggMDS: jest.fn(), })); -// Create a mock store - -const mockStore = { - userAuthMapping: {}, - userAggregateAuthMappings: {}, - discovery: {}, - subscribe: {}, - getState: () => ({ - userAggregateAuthMappings: false, - }), -}; - -const setup = (props) => - render( - - - - ); - -describe('DiscoveryWithMDSBackend', () => { - // Mock window.location +describe('Configuration', () => { beforeAll(() => { - delete window.location; // Delete the original window.location - window.location = { - search: '', - assign: jest.fn(), - reload: jest.fn(), - replace: jest.fn(), - }; + // Mock console.error + jest.spyOn(console, 'error').mockImplementation(() => {}); }); - const defaultProps = { - userAggregateAuthMappings: {}, - config: { - features: { authorization: { enabled: false } }, - minimalFieldMapping: {}, - }, - awaitingDownload: false, - selectedResources: [], - pagination: { currentPage: 1, resultsPerPage: 10 }, - selectedTags: [], - searchTerm: '', - accessSortDirection: 'asc', - accessFilters: {}, - onAdvancedSearch: jest.fn(), - onSearchChange: jest.fn(), - onTagsSelected: jest.fn(), - onAccessFilterSet: jest.fn(), - onAccessSortDirectionSet: jest.fn(), - onPaginationSet: jest.fn(), - onResourcesSelected: jest.fn(), - onDiscoveryPageActive: jest.fn(), - onRedirectForAction: jest.fn(), - }; - - test('changes number of batches based on props', async () => { - // Define different sets of props to test different conditions - const propsWithStudyRegistration = { - ...defaultProps, - config: { - ...defaultProps.config, - features: { ...defaultProps.config.features, studyRegistration: true }, - }, - }; - - const propsWithoutStudyRegistration = { - ...defaultProps, - config: { - ...defaultProps.config, - features: { ...defaultProps.config.features, studyRegistration: false }, - }, - }; - - const mockStudies = Array.from({ length: 12 }, (_, i) => ({ - id: `${i}`, - name: `Study ${i + 1}`, - })); - require('./aggMDSUtils').loadStudiesFromAggMDS.mockResolvedValue( - mockStudies - ); - require('./MDSUtils').getSomeStudiesFromMDS.mockResolvedValue(mockStudies); - - // First, test with study registration enabled - setup(propsWithStudyRegistration); - - await act(async () => { - await waitFor(() => { - expect(screen.getByText('Study 12')).toBeInTheDocument(); - }); - }); - - // Verify that the number of batches loaded is as expected when study registration is enabled - expect(require('./aggMDSUtils').loadStudiesFromAggMDS).toHaveBeenCalledWith( - 5 - ); // smaller batch - expect(require('./MDSUtils').getSomeStudiesFromMDS).toHaveBeenCalledWith( - 'unregistered_discovery_metadata', - 5 - ); // unregistered studies batch - - // Next, test with study registration disabled - setup(propsWithoutStudyRegistration); - - await act(async () => { - await waitFor(() => { - expect(screen.getByText('Study 12')).toBeInTheDocument(); - }); - }); - - // Verify that the number of batches loaded is as expected when study registration is disabled - expect(require('./aggMDSUtils').loadStudiesFromAggMDS).toHaveBeenCalledWith( - 10 - ); // smaller batch - expect(require('./MDSUtils').getSomeStudiesFromMDS).not.toHaveBeenCalled(); // no unregistered studies batch + test('prints to screen', async () => { + MDSUtils.getSomeStudiesFromMDS.mockResolvedValueOnce(mockData); + aggMDSUtils.loadStudiesFromAggMDS.mockResolvedValueOnce(mockData); + + const wrapper = mount(getIndexComponent(mockStore(initStoreData), testConfig)); + console.log('FIRST LOAD'); + console.log(wrapper.debug()); + expect(wrapper.find('.discovery-header__stat-number').text()).toBe('0'); + expect(wrapper.find('.discovery-header__stat-label').at(1).text()).toBe('Loading studies...'); + + await new Promise(setImmediate); // Wait for promises to resolve + wrapper.update(); // Update the wrapper to reflect the changes + console.log('****************************************'); + console.log('SECOND LOAD'); + console.log(wrapper.debug()); + + // expect(wrapper.find('.discovery-header__stat-number').text()).toBe('10'); + // Wait for the studies to be fetched + // await new Promise(setImmediate); + // wrapper.update(); + + // Assertions: Check if the studies were populated correctly + // expect(wrapper.find('.discovery-header__stat-number').text()).toBe('10'); }); }); diff --git a/src/Discovery/index.tsx b/src/Discovery/index.tsx index f185979e1b..e975945b4b 100644 --- a/src/Discovery/index.tsx +++ b/src/Discovery/index.tsx @@ -80,11 +80,12 @@ const DiscoveryWithMDSBackend: React.FC<{ const expectedNumberOfTotalBatches = 2; // if loading with both unregistered and registered studies, load 5 for each (10 total) const numberOfStudiesForSmallerBatch = isEnabled('studyRegistration') ? 5 : 10; - const numberOfSmallBatchesLoaded = isEnabled('studyRegistration') ? 2 : 1; - const totalNumberOfStudiesFromSmallBatches = numberOfStudiesForSmallerBatch * numberOfSmallBatchesLoaded; + const numberOfSmallBatchesToBeLoaded = isEnabled('studyRegistration') ? 2 : 1; + const totalNumberOfStudiesFromSmallBatches = numberOfStudiesForSmallerBatch * numberOfSmallBatchesToBeLoaded; const numberOfStudiesForAllStudiesBatch = 2000; useEffect(() => { + console.log('ran useEffect ln 88') // If batch loading is Enabled, update the numberOfBatchesLoaded to enable calling of different batch sizes // with different parameters if (numberOfBatchesLoaded < expectedNumberOfTotalBatches) setNumberOfBatchesLoaded(numberOfBatchesLoaded + 1); From 6f4381161810096ce88171b051410c71d74f9d7d Mon Sep 17 00:00:00 2001 From: Jarvis Raymond Date: Fri, 20 Sep 2024 13:50:33 -0500 Subject: [PATCH 10/25] feat(discoveryEnhancedLoading): Added MDSUtils unit test --- .../DiscoveryLoadingProgressBar.tsx | 10 +- src/Discovery/MDSUtils.test.jsx | 93 +++++++++++++++++++ 2 files changed, 96 insertions(+), 7 deletions(-) create mode 100644 src/Discovery/MDSUtils.test.jsx diff --git a/src/Discovery/DiscoveryLoadingProgressBar/DiscoveryLoadingProgressBar.tsx b/src/Discovery/DiscoveryLoadingProgressBar/DiscoveryLoadingProgressBar.tsx index 1d99d7c423..1319b744e6 100644 --- a/src/Discovery/DiscoveryLoadingProgressBar/DiscoveryLoadingProgressBar.tsx +++ b/src/Discovery/DiscoveryLoadingProgressBar/DiscoveryLoadingProgressBar.tsx @@ -15,6 +15,7 @@ const DiscoveryLoadingProgressBar = ({ // Auto incrementing percent logic const percentUpdateInterval = 500; const percentIncrementAmount = 5; + useEffect(() => { const interval = setInterval(() => { setPercent((prevPercent) => prevPercent + percentIncrementAmount); @@ -24,14 +25,12 @@ const DiscoveryLoadingProgressBar = ({ // hide the bar after a delay after the batches are loaded, // giving the browser some time to process the batch - const delayTimeBeforeHidingProgressBar = 2000; + const delayTimeBeforeHidingProgressBar = 2500; useEffect(() => { - console.log('useeffect achieved!'); if (allBatchesAreLoaded) { setPercent(100); // Change displayProgressBar to false after delay setTimeout(() => { - console.log('timeout achieved!'); setDisplayProgressBar(false); }, delayTimeBeforeHidingProgressBar); } @@ -40,10 +39,7 @@ const DiscoveryLoadingProgressBar = ({ return ( { displayProgressBar && ( -

+
{ + afterEach(() => { + jest.clearAllMocks(); // Clear mocks after each test + }); + + /* + describe('loadStudiesFromMDS', () => { + it('should load studies successfully', async () => { + const mockResponse = { + 0: { gen3_discovery: { name: 'Study 1' } }, + 1: { gen3_discovery: { name: 'Study 2' } }, + }; + + fetch.mockResolvedValueOnce({ + status: 200, + json: jest.fn().mockResolvedValueOnce(mockResponse), + }); + + const studies = await loadStudiesFromMDS(); + expect(studies).toEqual([{ name: 'Study 1' }, { name: 'Study 2' }]); + expect(fetch).toHaveBeenCalledTimes(1); + expect(fetch).toHaveBeenCalledWith(`${mdsURL}?data=True&_guid_type=discovery_metadata&limit=2000&offset=0`); + }); + + it('should throw an error on fetch failure', async () => { + const mockResponse = { + 0: { gen3_discovery: { name: 'Study 1' } }, + 1: { gen3_discovery: { name: 'Study 2' } }, + }; + fetch.mockResolvedValueOnce({ + status: 401, + json: jest.fn().mockResolvedValueOnce(mockResponse), + }); + const expectedErrorMsg = 'Request for study data failed: Error'; + let actualErrorMsg = null; + try { + const studies = await loadStudiesFromMDS(); + } catch (e) { + actualErrorMsg = e.message; + } + expect(actualErrorMsg.toString().includes(expectedErrorMsg)).toBe(true); + }); + + it('should load up to 2000 studies, then load more with a secondary request', async () => { + const mockStudies = new Array(2500).fill({mockStudy:'info'}); + // Simulate first fetch (2000 studies) + fetch.mockImplementationOnce(() => + Promise.resolve({ + status: 200, + json: () => Promise.resolve(mockStudies.slice(0, 2000)) + }) + ); + + // Simulate second fetch (500 studies) + fetch.mockImplementationOnce(() => + Promise.resolve({ + status: 200, + json: () => Promise.resolve(mockStudies.slice(2000, 2500)) + }) + ); + const studies = await loadStudiesFromMDS(); + expect(fetch).toHaveBeenCalledTimes(2); + expect(studies.length).toBe(2500); + }); + */ + + describe('getSomeStudiesFromMDS', () => { + it('should retrieve a limited number of studies', async () => { + const mockResponse = { + 0: { gen3_discovery: { name: 'Study 1' } }, + 1: { gen3_discovery: { name: 'Study 2' } }, + }; + + fetch.mockResolvedValueOnce({ + status: 200, + json: jest.fn().mockResolvedValueOnce(mockResponse), + }); + + const studies = await getSomeStudiesFromMDS('discovery_metadata', 2); + expect(studies).toEqual([{ name: 'Study 1' }, { name: 'Study 2' }]); + expect(fetch).toHaveBeenCalledTimes(1); + expect(fetch).toHaveBeenCalledWith(`${mdsURL}?data=True&_guid_type=discovery_metadata&limit=2`); + }); + + + }); +}); From 53498162294d6306ef24cf2bcb25ff1b24a1dd6e Mon Sep 17 00:00:00 2001 From: Jarvis Raymond Date: Fri, 20 Sep 2024 13:56:18 -0500 Subject: [PATCH 11/25] feat(discoveryEnhancedLoading): updated MDSUtils.test.jsx --- src/Discovery/MDSUtils.test.jsx | 120 +++++++++++++++++--------------- 1 file changed, 64 insertions(+), 56 deletions(-) diff --git a/src/Discovery/MDSUtils.test.jsx b/src/Discovery/MDSUtils.test.jsx index fd8e8d5528..2f92c5998a 100644 --- a/src/Discovery/MDSUtils.test.jsx +++ b/src/Discovery/MDSUtils.test.jsx @@ -4,12 +4,30 @@ import { mdsURL } from '../localconf'; // Mocking the global fetch API global.fetch = jest.fn(); +const checkForFetchError = async (targetFunction) => { + const mockResponse = { + 0: { gen3_discovery: { name: 'Study 1' } }, + 1: { gen3_discovery: { name: 'Study 2' } }, + }; + fetch.mockResolvedValueOnce({ + status: 401, + json: jest.fn().mockResolvedValueOnce(mockResponse), + }); + const expectedErrorMsg = 'Request for study data failed: Error'; + let actualErrorMsg = null; + try { + const studies = await targetFunction(); + } catch (e) { + actualErrorMsg = e.message; + } + expect(actualErrorMsg.toString().includes(expectedErrorMsg)).toBe(true); +}; + describe('MDS Data Loading Functions', () => { afterEach(() => { jest.clearAllMocks(); // Clear mocks after each test }); - /* describe('loadStudiesFromMDS', () => { it('should load studies successfully', async () => { const mockResponse = { @@ -25,69 +43,59 @@ describe('MDS Data Loading Functions', () => { const studies = await loadStudiesFromMDS(); expect(studies).toEqual([{ name: 'Study 1' }, { name: 'Study 2' }]); expect(fetch).toHaveBeenCalledTimes(1); - expect(fetch).toHaveBeenCalledWith(`${mdsURL}?data=True&_guid_type=discovery_metadata&limit=2000&offset=0`); + expect(fetch).toHaveBeenCalledWith( + `${mdsURL}?data=True&_guid_type=discovery_metadata&limit=2000&offset=0` + ); }); - it('should throw an error on fetch failure', async () => { - const mockResponse = { - 0: { gen3_discovery: { name: 'Study 1' } }, - 1: { gen3_discovery: { name: 'Study 2' } }, - }; - fetch.mockResolvedValueOnce({ - status: 401, - json: jest.fn().mockResolvedValueOnce(mockResponse), + it('should throw an error on fetch failure', async () => { + checkForFetchError(loadStudiesFromMDS); }); - const expectedErrorMsg = 'Request for study data failed: Error'; - let actualErrorMsg = null; - try { - const studies = await loadStudiesFromMDS(); - } catch (e) { - actualErrorMsg = e.message; - } - expect(actualErrorMsg.toString().includes(expectedErrorMsg)).toBe(true); - }); - it('should load up to 2000 studies, then load more with a secondary request', async () => { - const mockStudies = new Array(2500).fill({mockStudy:'info'}); - // Simulate first fetch (2000 studies) - fetch.mockImplementationOnce(() => - Promise.resolve({ - status: 200, - json: () => Promise.resolve(mockStudies.slice(0, 2000)) - }) - ); + it('should load up to 2000 studies, then load more with a secondary request', async () => { + const mockStudies = new Array(2500).fill({ mockStudy: 'info' }); + // Simulate first fetch (2000 studies) + fetch.mockImplementationOnce(() => + Promise.resolve({ + status: 200, + json: () => Promise.resolve(mockStudies.slice(0, 2000)), + }) + ); - // Simulate second fetch (500 studies) - fetch.mockImplementationOnce(() => - Promise.resolve({ - status: 200, - json: () => Promise.resolve(mockStudies.slice(2000, 2500)) - }) - ); - const studies = await loadStudiesFromMDS(); - expect(fetch).toHaveBeenCalledTimes(2); - expect(studies.length).toBe(2500); - }); - */ + // Simulate second fetch (500 studies) + fetch.mockImplementationOnce(() => + Promise.resolve({ + status: 200, + json: () => Promise.resolve(mockStudies.slice(2000, 2500)), + }) + ); + const studies = await loadStudiesFromMDS(); + expect(fetch).toHaveBeenCalledTimes(2); + expect(studies.length).toBe(2500); + }); - describe('getSomeStudiesFromMDS', () => { - it('should retrieve a limited number of studies', async () => { - const mockResponse = { - 0: { gen3_discovery: { name: 'Study 1' } }, - 1: { gen3_discovery: { name: 'Study 2' } }, - }; + describe('getSomeStudiesFromMDS', () => { + it('should retrieve a limited number of studies', async () => { + const mockResponse = { + 0: { gen3_discovery: { name: 'Study 1' } }, + 1: { gen3_discovery: { name: 'Study 2' } }, + }; - fetch.mockResolvedValueOnce({ - status: 200, - json: jest.fn().mockResolvedValueOnce(mockResponse), - }); + fetch.mockResolvedValueOnce({ + status: 200, + json: jest.fn().mockResolvedValueOnce(mockResponse), + }); - const studies = await getSomeStudiesFromMDS('discovery_metadata', 2); - expect(studies).toEqual([{ name: 'Study 1' }, { name: 'Study 2' }]); - expect(fetch).toHaveBeenCalledTimes(1); - expect(fetch).toHaveBeenCalledWith(`${mdsURL}?data=True&_guid_type=discovery_metadata&limit=2`); + const studies = await getSomeStudiesFromMDS('discovery_metadata', 2); + expect(studies).toEqual([{ name: 'Study 1' }, { name: 'Study 2' }]); + expect(fetch).toHaveBeenCalledTimes(1); + expect(fetch).toHaveBeenCalledWith( + `${mdsURL}?data=True&_guid_type=discovery_metadata&limit=2` + ); + }); + it('should throw an error on fetch failure', async () => { + checkForFetchError(getSomeStudiesFromMDS); + }); }); - - }); }); From 0626248db42d4391911064053a7d74ade2d75f74 Mon Sep 17 00:00:00 2001 From: Jarvis Raymond Date: Fri, 20 Sep 2024 14:54:44 -0500 Subject: [PATCH 12/25] feat(discoveryEnhancedLoading): added aggMDSUtils.test.jsx and organized utils into utils folder --- .../{ => Utils/MDSUtils}/MDSUtils.jsx | 2 +- .../{ => Utils/MDSUtils}/MDSUtils.test.jsx | 2 +- .../{ => Utils/aggMDSUtils}/aggMDSUtils.jsx | 2 +- .../Utils/aggMDSUtils/aggMDSUtils.test.jsx | 74 +++++++++++++++++++ src/Discovery/index.tsx | 5 +- 5 files changed, 79 insertions(+), 6 deletions(-) rename src/Discovery/{ => Utils/MDSUtils}/MDSUtils.jsx (97%) rename src/Discovery/{ => Utils/MDSUtils}/MDSUtils.test.jsx (97%) rename src/Discovery/{ => Utils/aggMDSUtils}/aggMDSUtils.jsx (99%) create mode 100644 src/Discovery/Utils/aggMDSUtils/aggMDSUtils.test.jsx diff --git a/src/Discovery/MDSUtils.jsx b/src/Discovery/Utils/MDSUtils/MDSUtils.jsx similarity index 97% rename from src/Discovery/MDSUtils.jsx rename to src/Discovery/Utils/MDSUtils/MDSUtils.jsx index e2c291821f..9309f7114f 100644 --- a/src/Discovery/MDSUtils.jsx +++ b/src/Discovery/Utils/MDSUtils/MDSUtils.jsx @@ -1,4 +1,4 @@ -import { mdsURL, studyRegistrationConfig } from '../localconf'; +import { mdsURL, studyRegistrationConfig } from '../../../localconf'; const LIMIT = 2000; // required or else mds defaults to returning 10 records const STUDY_DATA_FIELD = 'gen3_discovery'; // field in the MDS response that contains the study data diff --git a/src/Discovery/MDSUtils.test.jsx b/src/Discovery/Utils/MDSUtils/MDSUtils.test.jsx similarity index 97% rename from src/Discovery/MDSUtils.test.jsx rename to src/Discovery/Utils/MDSUtils/MDSUtils.test.jsx index 2f92c5998a..9a39901300 100644 --- a/src/Discovery/MDSUtils.test.jsx +++ b/src/Discovery/Utils/MDSUtils/MDSUtils.test.jsx @@ -1,4 +1,4 @@ -import { loadStudiesFromMDS, getSomeStudiesFromMDS } from './MDSUtils'; +import { loadStudiesFromMDS, getSomeStudiesFromMDS } from './Utils/MDSUtils/MDSUtils'; import { mdsURL } from '../localconf'; // Mocking the global fetch API diff --git a/src/Discovery/aggMDSUtils.jsx b/src/Discovery/Utils/aggMDSUtils/aggMDSUtils.jsx similarity index 99% rename from src/Discovery/aggMDSUtils.jsx rename to src/Discovery/Utils/aggMDSUtils/aggMDSUtils.jsx index 04893e0cb6..b70027c2ce 100644 --- a/src/Discovery/aggMDSUtils.jsx +++ b/src/Discovery/Utils/aggMDSUtils/aggMDSUtils.jsx @@ -1,4 +1,4 @@ -import { discoveryConfig, aggMDSDataURL, studyRegistrationConfig } from '../localconf'; +import { discoveryConfig, aggMDSDataURL, studyRegistrationConfig } from '../../../localconf'; /** * getUniqueTags returns a reduced subset of unique tags for the given tags. diff --git a/src/Discovery/Utils/aggMDSUtils/aggMDSUtils.test.jsx b/src/Discovery/Utils/aggMDSUtils/aggMDSUtils.test.jsx new file mode 100644 index 0000000000..15b09ca9ba --- /dev/null +++ b/src/Discovery/Utils/aggMDSUtils/aggMDSUtils.test.jsx @@ -0,0 +1,74 @@ +import loadStudiesFromAggMDS from './aggMDSUtils'; +import { aggMDSDataURL } from '../../../localconf'; + +describe('loadStudiesFromAggMDS', () => { + beforeEach(() => { + global.fetch = jest.fn(); + }); + + afterEach(() => { + jest.resetAllMocks(); + }); + const mockResponse = { + commons1: [ + { + study1: { + gen3_discovery: { + dataType: ['type1', 'type2'], + dataFormat: 'format1', + tags: [{ category: 'existingTag', name: 'value' }], + }, + data_dictionary: 'dictionary content', + }, + }, + ], + }; + + it('should load and process studies correctly', async () => { + global.fetch.mockResolvedValueOnce({ + status: 200, + json: jest.fn().mockResolvedValueOnce(mockResponse), + }); + const result = await loadStudiesFromAggMDS(); + expect(global.fetch).toHaveBeenCalledTimes(1); + expect(result).toHaveLength(1); + expect(result[0]).toEqual({ + commons: 'commons1', + dataFormat: 'format1', + dataType: ['type1', 'type2'], + frontend_uid: 'commons1_0', + study_id: 'study1', + tags: [ + { category: 'existingTag', name: 'value' }, + { category: 'Commons', name: 'commons1' }, + ], + }); + }); + + it('should throw an error when fetch fails', async () => { + fetch.mockResolvedValueOnce({ + status: 401, + json: jest.fn().mockResolvedValueOnce(mockResponse), + }); + const expectedLimit = 2000; + const expectedOffset = 0; + const url = `${aggMDSDataURL}?data=True&limit=${expectedLimit}&offset=${expectedOffset}`; + const expectedErrorMsg = `Request for study data at ${url} failed.`; + let actualErrorMsg = null; + try { + const result = await loadStudiesFromAggMDS(); + } catch (e) { + actualErrorMsg = e.message; + } + expect(actualErrorMsg.toString().includes(expectedErrorMsg)).toBe(true); + }); + + it('should handle empty response correctly', async () => { + global.fetch.mockResolvedValueOnce({ + status: 200, + json: jest.fn().mockResolvedValueOnce({}), + }); + const result = await loadStudiesFromAggMDS(); + expect(result).toEqual([]); + }); +}); diff --git a/src/Discovery/index.tsx b/src/Discovery/index.tsx index e975945b4b..7daea19e48 100644 --- a/src/Discovery/index.tsx +++ b/src/Discovery/index.tsx @@ -8,8 +8,8 @@ import { hostnameWithSubdomain, discoveryConfig, studyRegistrationConfig, useArboristUI, } from '../localconf'; import isEnabled from '../helpers/featureFlags'; -import loadStudiesFromAggMDS from './aggMDSUtils'; -import { loadStudiesFromMDS, getSomeStudiesFromMDS } from './MDSUtils'; +import loadStudiesFromAggMDS from './Utils/aggMDSUtils/aggMDSUtils'; +import { loadStudiesFromMDS, getSomeStudiesFromMDS } from './Utils/MDSUtils/MDSUtils'; const populateStudiesWithConfigInfo = (studies, config) => { if (!config.studies) { @@ -85,7 +85,6 @@ const DiscoveryWithMDSBackend: React.FC<{ const numberOfStudiesForAllStudiesBatch = 2000; useEffect(() => { - console.log('ran useEffect ln 88') // If batch loading is Enabled, update the numberOfBatchesLoaded to enable calling of different batch sizes // with different parameters if (numberOfBatchesLoaded < expectedNumberOfTotalBatches) setNumberOfBatchesLoaded(numberOfBatchesLoaded + 1); From b1dd85c295a3fd6058f0e537a5c81cf4fe93042d Mon Sep 17 00:00:00 2001 From: Jarvis Raymond Date: Fri, 20 Sep 2024 16:24:59 -0500 Subject: [PATCH 13/25] feat(discoveryEnhancedLoading): removed index.test.tsx because was unable to write a test to test new logic, updated MDSUtils test --- .../Utils/MDSUtils/MDSUtils.test.jsx | 7 +- src/Discovery/index.test.tsx | 131 ------------------ 2 files changed, 3 insertions(+), 135 deletions(-) delete mode 100644 src/Discovery/index.test.tsx diff --git a/src/Discovery/Utils/MDSUtils/MDSUtils.test.jsx b/src/Discovery/Utils/MDSUtils/MDSUtils.test.jsx index 9a39901300..0e2fee0107 100644 --- a/src/Discovery/Utils/MDSUtils/MDSUtils.test.jsx +++ b/src/Discovery/Utils/MDSUtils/MDSUtils.test.jsx @@ -1,7 +1,6 @@ -import { loadStudiesFromMDS, getSomeStudiesFromMDS } from './Utils/MDSUtils/MDSUtils'; -import { mdsURL } from '../localconf'; +import { loadStudiesFromMDS, getSomeStudiesFromMDS } from './MDSUtils'; +import { mdsURL } from '../../../localconf'; -// Mocking the global fetch API global.fetch = jest.fn(); const checkForFetchError = async (targetFunction) => { @@ -25,7 +24,7 @@ const checkForFetchError = async (targetFunction) => { describe('MDS Data Loading Functions', () => { afterEach(() => { - jest.clearAllMocks(); // Clear mocks after each test + jest.clearAllMocks(); }); describe('loadStudiesFromMDS', () => { diff --git a/src/Discovery/index.test.tsx b/src/Discovery/index.test.tsx deleted file mode 100644 index a28f2d77ce..0000000000 --- a/src/Discovery/index.test.tsx +++ /dev/null @@ -1,131 +0,0 @@ -import React from 'react'; -import { shallow, mount } from 'enzyme'; -import { Provider } from 'react-redux'; -import { StaticRouter } from 'react-router-dom'; -import configureMockStore from 'redux-mock-store'; -import mockData from './__mocks__/mock_mds_studies.json'; -import mockConfig from './__mocks__/mock_config.json'; -import DiscoveryWithMDSBackend from './index.tsx'; -import { DiscoveryConfig } from './DiscoveryConfig'; -import { AccessLevel, AccessSortDirection } from './Discovery'; -import * as MDSUtils from './MDSUtils'; -import * as aggMDSUtils from './aggMDSUtils'; - -const mockStore = configureMockStore(); -const initStoreData = { - user: { - username: 'mock_user', - }, - discovery: { - selectedResources: [], - actionToResume: null, - accessFilters: { - [AccessLevel.ACCESSIBLE]: true, - [AccessLevel.UNACCESSIBLE]: true, - [AccessLevel.WAITING]: true, - [AccessLevel.NOT_AVAILABLE]: true, - }, - selectedTags: {}, - pagination: { - resultsPerPage: 10, - currentPage: 1, - }, - accessSortDirection: AccessSortDirection.DESCENDING, - }, -}; - -const defaultProps = { - selectedResources: [1, 2, 3], - userAggregateAuthMappings: {}, - config: { - features: { authorization: { enabled: false } }, - minimalFieldMapping: {}, - }, - awaitingDownload: false, - pagination: { currentPage: 1, resultsPerPage: 10 }, - selectedTags: [], - searchTerm: '', - accessSortDirection: 'asc', - accessFilters: {}, - onAdvancedSearch: jest.fn(), - onSearchChange: jest.fn(), - onTagsSelected: jest.fn(), - onAccessFilterSet: jest.fn(), - onAccessSortDirectionSet: jest.fn(), - onPaginationSet: jest.fn(), - onResourcesSelected: jest.fn(), - onDiscoveryPageActive: jest.fn(), - onRedirectForAction: jest.fn(), -}; - -const getIndexComponent = (store, config: DiscoveryConfig, params = {}) => ( - - - - - -); - -// This mock is required to avoid errors when rendering the Discovery page -// with enzyme's `mount` method (which uses jsdom). (antd components use window.matchMedia) -// See https://jestjs.io/docs/en/manual-mocks#mocking-methods-which-are-not-implemented-in-jsdom -Object.defineProperty(window, 'matchMedia', { - writable: true, - value: jest.fn().mockImplementation((query) => ({ - matches: false, - media: query, - onchange: null, - addListener: jest.fn(), // Deprecated - removeListener: jest.fn(), // Deprecated - addEventListener: jest.fn(), - removeEventListener: jest.fn(), - dispatchEvent: jest.fn(), - })), -}); - -let testConfig: DiscoveryConfig; -beforeEach(() => { - testConfig = mockConfig as DiscoveryConfig; -}); - - -// Mock the loadStudiesFromAggMDS and getSomeStudiesFromMDS functions -jest.mock('./MDSUtils', () => ({ - loadStudiesFromMDS: jest.fn(), - getSomeStudiesFromMDS: jest.fn(), -})); - -jest.mock('./aggMDSUtils', () => ({ - loadStudiesFromAggMDS: jest.fn(), -})); - -describe('Configuration', () => { - beforeAll(() => { - // Mock console.error - jest.spyOn(console, 'error').mockImplementation(() => {}); - }); - test('prints to screen', async () => { - MDSUtils.getSomeStudiesFromMDS.mockResolvedValueOnce(mockData); - aggMDSUtils.loadStudiesFromAggMDS.mockResolvedValueOnce(mockData); - - const wrapper = mount(getIndexComponent(mockStore(initStoreData), testConfig)); - console.log('FIRST LOAD'); - console.log(wrapper.debug()); - expect(wrapper.find('.discovery-header__stat-number').text()).toBe('0'); - expect(wrapper.find('.discovery-header__stat-label').at(1).text()).toBe('Loading studies...'); - - await new Promise(setImmediate); // Wait for promises to resolve - wrapper.update(); // Update the wrapper to reflect the changes - console.log('****************************************'); - console.log('SECOND LOAD'); - console.log(wrapper.debug()); - - // expect(wrapper.find('.discovery-header__stat-number').text()).toBe('10'); - // Wait for the studies to be fetched - // await new Promise(setImmediate); - // wrapper.update(); - - // Assertions: Check if the studies were populated correctly - // expect(wrapper.find('.discovery-header__stat-number').text()).toBe('10'); - }); -}); From 6a80e5e9ca54106b72228ec363c959f625a91871 Mon Sep 17 00:00:00 2001 From: Jarvis Raymond Date: Thu, 26 Sep 2024 09:34:41 -0500 Subject: [PATCH 14/25] feat(discoveryEnhancedLoading): Updated imports for StudyRegistration --- src/StudyRegistration/StudyRegistration.tsx | 326 ++++++++++++++------ 1 file changed, 234 insertions(+), 92 deletions(-) diff --git a/src/StudyRegistration/StudyRegistration.tsx b/src/StudyRegistration/StudyRegistration.tsx index f2b6ac2122..e10b6480ab 100644 --- a/src/StudyRegistration/StudyRegistration.tsx +++ b/src/StudyRegistration/StudyRegistration.tsx @@ -21,8 +21,12 @@ import { Link, useLocation } from 'react-router-dom'; import './StudyRegistration.css'; import { userHasMethodForServiceOnResource } from '../authMappingUtils'; import { useArboristUI, studyRegistrationConfig } from '../localconf'; -import loadStudiesFromMDS from '../Discovery/MDSUtils'; -import { registerStudyInMDS, preprocessStudyRegistrationMetadata, createCEDARInstance } from './utils'; +import { loadStudiesFromMDS } from '../Discovery/Utils/MDSUtils/MDSUtils'; +import { + registerStudyInMDS, + preprocessStudyRegistrationMetadata, + createCEDARInstance, +} from './utils'; import Spinner from '../components/Spinner'; const { Option } = Select; @@ -33,11 +37,11 @@ export interface FormSubmissionState { text?: string; } export interface User { - username: string + username: string; } export interface StudyRegistrationProps { - user: User, - userAuthMapping: any + user: User; + userAuthMapping: any; } interface LocationState { studyUID?: string | number; @@ -69,11 +73,16 @@ const validateMessages = { }; /* eslint-enable no-template-curly-in-string */ -const handleClinicalTrialIDValidation = async (_, ctID: string): Promise => { +const handleClinicalTrialIDValidation = async ( + _, + ctID: string +): Promise => { if (!ctID) { return Promise.resolve(true); } - const resp = await fetch(`https://clinicaltrials.gov/api/v2/studies/${ctID}?fields=NCTId`); + const resp = await fetch( + `https://clinicaltrials.gov/api/v2/studies/${ctID}?fields=NCTId` + ); if (!resp || resp.status !== 200) { return Promise.reject('Unable to verify ClinicalTrials.gov ID'); } @@ -90,9 +99,14 @@ const handleClinicalTrialIDValidation = async (_, ctID: string): Promise => { const errMsg = 'Unable to fetch study metadata from ClinicalTrials.gov'; - const clinicalTrialFieldsToFetch = studyRegistrationConfig.clinicalTrialFields || []; + const clinicalTrialFieldsToFetch = + studyRegistrationConfig.clinicalTrialFields || []; // get metadata from the clinicaltrials.gov API - const resp = await fetch(`https://clinicaltrials.gov/api/v2/studies/${ctID}?fields=${clinicalTrialFieldsToFetch.join('|')}`); + const resp = await fetch( + `https://clinicaltrials.gov/api/v2/studies/${ctID}?fields=${clinicalTrialFieldsToFetch.join( + '|' + )}` + ); if (!resp || resp.status !== 200) { return Promise.reject('Unable to verify ClinicalTrials.gov ID'); } @@ -106,49 +120,77 @@ const getClinicalTrialMetadata = async (ctID: string): Promise => { const isUUID = (input: string) => { // regexp for checking if a string is possibly an UUID, from https://melvingeorge.me/blog/check-if-string-valid-uuid-regex-javascript - const regexp = /^[0-9a-fA-F]{8}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{12}$/gi; + const regexp = + /^[0-9a-fA-F]{8}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{12}$/gi; return new RegExp(regexp).test(input); }; -const handleCedarUserIdValidation = (_, UUID: string): Promise => { +const handleCedarUserIdValidation = ( + _, + UUID: string +): Promise => { if (UUID && isUUID(UUID)) { return Promise.resolve(true); } return Promise.reject('Invalid CEDAR user UUID'); }; -const StudyRegistration: React.FunctionComponent = (props:StudyRegistrationProps) => { +const StudyRegistration: React.FunctionComponent = ( + props: StudyRegistrationProps +) => { const [form] = Form.useForm(); const location = useLocation(); - const [formSubmissionStatus, setFormSubmissionStatus] = useState(null); + const [formSubmissionStatus, setFormSubmissionStatus] = + useState(null); const [studies, setStudies] = useState(null); const [regRequestPending, setRegRequestPending] = useState(false); - const [studyUID, setStudyUID] = useState(null); + const [studyUID, setStudyUID] = useState( + null + ); useEffect(() => { - const locationStateData = location.state as LocationState || {}; + const locationStateData = (location.state as LocationState) || {}; setStudyUID(locationStateData.studyUID); - loadStudiesFromMDS('unregistered_discovery_metadata').then((rawStudies) => { - if (!useArboristUI || !studyRegistrationConfig.studyRegistrationAccessCheckField) { - setStudies(rawStudies); - } else { - const studiesToSet = rawStudies.filter((study) => { - if (!study[studyRegistrationConfig.studyRegistrationAccessCheckField]) { - return false; - } - return (userHasMethodForServiceOnResource('access', 'study_registration', study[studyRegistrationConfig.studyRegistrationAccessCheckField], props.userAuthMapping)); - }); - setStudies(studiesToSet); - } - }).catch((err) => { - // eslint-disable-next-line no-console - console.error('Error encountered while loading studies: ', err); - }); + loadStudiesFromMDS('unregistered_discovery_metadata') + .then((rawStudies) => { + if ( + !useArboristUI || + !studyRegistrationConfig.studyRegistrationAccessCheckField + ) { + setStudies(rawStudies); + } else { + const studiesToSet = rawStudies.filter((study) => { + if ( + !study[studyRegistrationConfig.studyRegistrationAccessCheckField] + ) { + return false; + } + return userHasMethodForServiceOnResource( + 'access', + 'study_registration', + study[studyRegistrationConfig.studyRegistrationAccessCheckField], + props.userAuthMapping + ); + }); + setStudies(studiesToSet); + } + }) + .catch((err) => { + // eslint-disable-next-line no-console + console.error('Error encountered while loading studies: ', err); + }); }, [formSubmissionStatus, location.state, props.userAuthMapping]); useEffect(() => { - if (studies?.map((study) => study[studyRegistrationConfig.studyRegistrationUIDField]).includes(studyUID) && studyUID !== null) { + if ( + studies + ?.map( + (study) => study[studyRegistrationConfig.studyRegistrationUIDField] + ) + .includes(studyUID) && + studyUID !== null + ) { form.resetFields(); } }, [studyUID, form, studies]); @@ -158,7 +200,20 @@ const StudyRegistration: React.FunctionComponent = (prop return true; } // to actually kicks off study registration request, user needs to have MDS and CEDAR access - return (userHasMethodForServiceOnResource('access', 'mds_gateway', '/mds_gateway', props.userAuthMapping) && userHasMethodForServiceOnResource('access', 'cedar', '/cedar', props.userAuthMapping)); + return ( + userHasMethodForServiceOnResource( + 'access', + 'mds_gateway', + '/mds_gateway', + props.userAuthMapping + ) && + userHasMethodForServiceOnResource( + 'access', + 'cedar', + '/cedar', + props.userAuthMapping + ) + ); }; const handleRegisterFormSubmission = async (formValues) => { @@ -168,22 +223,32 @@ const StudyRegistration: React.FunctionComponent = (prop const ctgovID = formValues.clinical_trials_id; const valuesToUpdate = { repository: formValues.repository || '', - repository_study_ids: ((!formValues.repository_study_ids || formValues.repository_study_ids[0] === '') ? [] : formValues.repository_study_ids), + repository_study_ids: + !formValues.repository_study_ids || + formValues.repository_study_ids[0] === '' + ? [] + : formValues.repository_study_ids, clinical_trials_id: ctgovID || '', - clinicaltrials_gov: ctgovID ? await getClinicalTrialMetadata(ctgovID) : undefined, + clinicaltrials_gov: ctgovID + ? await getClinicalTrialMetadata(ctgovID) + : undefined, }; - preprocessStudyRegistrationMetadata(props.user.username, studyID, valuesToUpdate) - .then( - (preprocessedMetadata) => createCEDARInstance(cedarUserUUID, preprocessedMetadata) - .then( - (updatedMetadataToRegister) => registerStudyInMDS(studyID, updatedMetadataToRegister) - .then( - () => setFormSubmissionStatus({ status: 'success' }), - ), - (err) => setFormSubmissionStatus({ status: 'error', text: err.message }), - ), - (err) => setFormSubmissionStatus({ status: 'error', text: err.message }), - ); + preprocessStudyRegistrationMetadata( + props.user.username, + studyID, + valuesToUpdate + ).then( + (preprocessedMetadata) => + createCEDARInstance(cedarUserUUID, preprocessedMetadata).then( + (updatedMetadataToRegister) => + registerStudyInMDS(studyID, updatedMetadataToRegister).then(() => + setFormSubmissionStatus({ status: 'success' }) + ), + (err) => + setFormSubmissionStatus({ status: 'error', text: err.message }) + ), + (err) => setFormSubmissionStatus({ status: 'error', text: err.message }) + ); }; const onFinish = (values) => { @@ -198,20 +263,35 @@ const StudyRegistration: React.FunctionComponent = (prop return (
- {(formSubmissionStatus.status === 'success') ? ( + {formSubmissionStatus.status === 'success' ? ( { setFormSubmissionStatus(null); setRegRequestPending(false); setStudyUID(undefined); }}> + , , - - , ]} @@ -241,9 +328,19 @@ const StudyRegistration: React.FunctionComponent = (prop return (
-
+ Registration Information -
* Indicates required fields
+
+ * + Indicates required fields +
= (prop hasFeedback rules={[{ required: true }]} > - {studies?.map((study) => ( ))} @@ -275,19 +383,19 @@ const StudyRegistration: React.FunctionComponent = (prop ]} >
- +
- + Get CEDAR User UUID - +
@@ -310,17 +418,27 @@ const StudyRegistration: React.FunctionComponent = (prop name='repository' label='Study Data Repository' hasFeedback - help={( - If you have already selected a data repository, indicate it here; - otherwise, leave empty.
- If you have deposited your data and you have a unique Study ID for the data at - the repository, enter it below; otherwise, leave blank. + help={ + + {' '} + If you have already selected a data repository, indicate it + here; otherwise, leave empty. +
+ If you have deposited your data and you have a unique Study ID + for the data at the repository, enter it below; otherwise, leave + blank.
- )} + } > - - + @@ -331,23 +449,41 @@ const StudyRegistration: React.FunctionComponent = (prop - - - + + + - + - + - - - + + + - + @@ -362,13 +498,8 @@ const StudyRegistration: React.FunctionComponent = (prop key={field.key} >
- - + + {fields.length > 1 ? ( = (prop - {(!userHasAccess()) ? ( - + {!userHasAccess() ? ( + ) : ( - )} - From 781faf7bb7cc52f8e19ad67243b0bf885b794d23 Mon Sep 17 00:00:00 2001 From: Jarvis Raymond Date: Thu, 26 Sep 2024 10:15:45 -0500 Subject: [PATCH 15/25] feat(discoveryEnhancedLoading): Undid auto code formatting to avoid excessive line changes --- src/StudyRegistration/StudyRegistration.tsx | 324 ++++++-------------- 1 file changed, 91 insertions(+), 233 deletions(-) diff --git a/src/StudyRegistration/StudyRegistration.tsx b/src/StudyRegistration/StudyRegistration.tsx index e10b6480ab..7e08776ef6 100644 --- a/src/StudyRegistration/StudyRegistration.tsx +++ b/src/StudyRegistration/StudyRegistration.tsx @@ -22,11 +22,7 @@ import './StudyRegistration.css'; import { userHasMethodForServiceOnResource } from '../authMappingUtils'; import { useArboristUI, studyRegistrationConfig } from '../localconf'; import { loadStudiesFromMDS } from '../Discovery/Utils/MDSUtils/MDSUtils'; -import { - registerStudyInMDS, - preprocessStudyRegistrationMetadata, - createCEDARInstance, -} from './utils'; +import { registerStudyInMDS, preprocessStudyRegistrationMetadata, createCEDARInstance } from './utils'; import Spinner from '../components/Spinner'; const { Option } = Select; @@ -37,11 +33,11 @@ export interface FormSubmissionState { text?: string; } export interface User { - username: string; + username: string } export interface StudyRegistrationProps { - user: User; - userAuthMapping: any; + user: User, + userAuthMapping: any } interface LocationState { studyUID?: string | number; @@ -73,16 +69,11 @@ const validateMessages = { }; /* eslint-enable no-template-curly-in-string */ -const handleClinicalTrialIDValidation = async ( - _, - ctID: string -): Promise => { +const handleClinicalTrialIDValidation = async (_, ctID: string): Promise => { if (!ctID) { return Promise.resolve(true); } - const resp = await fetch( - `https://clinicaltrials.gov/api/v2/studies/${ctID}?fields=NCTId` - ); + const resp = await fetch(`https://clinicaltrials.gov/api/v2/studies/${ctID}?fields=NCTId`); if (!resp || resp.status !== 200) { return Promise.reject('Unable to verify ClinicalTrials.gov ID'); } @@ -99,14 +90,9 @@ const handleClinicalTrialIDValidation = async ( const getClinicalTrialMetadata = async (ctID: string): Promise => { const errMsg = 'Unable to fetch study metadata from ClinicalTrials.gov'; - const clinicalTrialFieldsToFetch = - studyRegistrationConfig.clinicalTrialFields || []; + const clinicalTrialFieldsToFetch = studyRegistrationConfig.clinicalTrialFields || []; // get metadata from the clinicaltrials.gov API - const resp = await fetch( - `https://clinicaltrials.gov/api/v2/studies/${ctID}?fields=${clinicalTrialFieldsToFetch.join( - '|' - )}` - ); + const resp = await fetch(`https://clinicaltrials.gov/api/v2/studies/${ctID}?fields=${clinicalTrialFieldsToFetch.join('|')}`); if (!resp || resp.status !== 200) { return Promise.reject('Unable to verify ClinicalTrials.gov ID'); } @@ -120,77 +106,49 @@ const getClinicalTrialMetadata = async (ctID: string): Promise => { const isUUID = (input: string) => { // regexp for checking if a string is possibly an UUID, from https://melvingeorge.me/blog/check-if-string-valid-uuid-regex-javascript - const regexp = - /^[0-9a-fA-F]{8}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{12}$/gi; + const regexp = /^[0-9a-fA-F]{8}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{12}$/gi; return new RegExp(regexp).test(input); }; -const handleCedarUserIdValidation = ( - _, - UUID: string -): Promise => { +const handleCedarUserIdValidation = (_, UUID: string): Promise => { if (UUID && isUUID(UUID)) { return Promise.resolve(true); } return Promise.reject('Invalid CEDAR user UUID'); }; -const StudyRegistration: React.FunctionComponent = ( - props: StudyRegistrationProps -) => { +const StudyRegistration: React.FunctionComponent = (props:StudyRegistrationProps) => { const [form] = Form.useForm(); const location = useLocation(); - const [formSubmissionStatus, setFormSubmissionStatus] = - useState(null); + const [formSubmissionStatus, setFormSubmissionStatus] = useState(null); const [studies, setStudies] = useState(null); const [regRequestPending, setRegRequestPending] = useState(false); - const [studyUID, setStudyUID] = useState( - null - ); + const [studyUID, setStudyUID] = useState(null); useEffect(() => { - const locationStateData = (location.state as LocationState) || {}; + const locationStateData = location.state as LocationState || {}; setStudyUID(locationStateData.studyUID); - loadStudiesFromMDS('unregistered_discovery_metadata') - .then((rawStudies) => { - if ( - !useArboristUI || - !studyRegistrationConfig.studyRegistrationAccessCheckField - ) { - setStudies(rawStudies); - } else { - const studiesToSet = rawStudies.filter((study) => { - if ( - !study[studyRegistrationConfig.studyRegistrationAccessCheckField] - ) { - return false; - } - return userHasMethodForServiceOnResource( - 'access', - 'study_registration', - study[studyRegistrationConfig.studyRegistrationAccessCheckField], - props.userAuthMapping - ); - }); - setStudies(studiesToSet); - } - }) - .catch((err) => { - // eslint-disable-next-line no-console - console.error('Error encountered while loading studies: ', err); - }); + loadStudiesFromMDS('unregistered_discovery_metadata').then((rawStudies) => { + if (!useArboristUI || !studyRegistrationConfig.studyRegistrationAccessCheckField) { + setStudies(rawStudies); + } else { + const studiesToSet = rawStudies.filter((study) => { + if (!study[studyRegistrationConfig.studyRegistrationAccessCheckField]) { + return false; + } + return (userHasMethodForServiceOnResource('access', 'study_registration', study[studyRegistrationConfig.studyRegistrationAccessCheckField], props.userAuthMapping)); + }); + setStudies(studiesToSet); + } + }).catch((err) => { + // eslint-disable-next-line no-console + console.error('Error encountered while loading studies: ', err); + }); }, [formSubmissionStatus, location.state, props.userAuthMapping]); useEffect(() => { - if ( - studies - ?.map( - (study) => study[studyRegistrationConfig.studyRegistrationUIDField] - ) - .includes(studyUID) && - studyUID !== null - ) { + if (studies?.map((study) => study[studyRegistrationConfig.studyRegistrationUIDField]).includes(studyUID) && studyUID !== null) { form.resetFields(); } }, [studyUID, form, studies]); @@ -200,20 +158,7 @@ const StudyRegistration: React.FunctionComponent = ( return true; } // to actually kicks off study registration request, user needs to have MDS and CEDAR access - return ( - userHasMethodForServiceOnResource( - 'access', - 'mds_gateway', - '/mds_gateway', - props.userAuthMapping - ) && - userHasMethodForServiceOnResource( - 'access', - 'cedar', - '/cedar', - props.userAuthMapping - ) - ); + return (userHasMethodForServiceOnResource('access', 'mds_gateway', '/mds_gateway', props.userAuthMapping) && userHasMethodForServiceOnResource('access', 'cedar', '/cedar', props.userAuthMapping)); }; const handleRegisterFormSubmission = async (formValues) => { @@ -223,32 +168,22 @@ const StudyRegistration: React.FunctionComponent = ( const ctgovID = formValues.clinical_trials_id; const valuesToUpdate = { repository: formValues.repository || '', - repository_study_ids: - !formValues.repository_study_ids || - formValues.repository_study_ids[0] === '' - ? [] - : formValues.repository_study_ids, + repository_study_ids: ((!formValues.repository_study_ids || formValues.repository_study_ids[0] === '') ? [] : formValues.repository_study_ids), clinical_trials_id: ctgovID || '', - clinicaltrials_gov: ctgovID - ? await getClinicalTrialMetadata(ctgovID) - : undefined, + clinicaltrials_gov: ctgovID ? await getClinicalTrialMetadata(ctgovID) : undefined, }; - preprocessStudyRegistrationMetadata( - props.user.username, - studyID, - valuesToUpdate - ).then( - (preprocessedMetadata) => - createCEDARInstance(cedarUserUUID, preprocessedMetadata).then( - (updatedMetadataToRegister) => - registerStudyInMDS(studyID, updatedMetadataToRegister).then(() => - setFormSubmissionStatus({ status: 'success' }) - ), - (err) => - setFormSubmissionStatus({ status: 'error', text: err.message }) - ), - (err) => setFormSubmissionStatus({ status: 'error', text: err.message }) - ); + preprocessStudyRegistrationMetadata(props.user.username, studyID, valuesToUpdate) + .then( + (preprocessedMetadata) => createCEDARInstance(cedarUserUUID, preprocessedMetadata) + .then( + (updatedMetadataToRegister) => registerStudyInMDS(studyID, updatedMetadataToRegister) + .then( + () => setFormSubmissionStatus({ status: 'success' }), + ), + (err) => setFormSubmissionStatus({ status: 'error', text: err.message }), + ), + (err) => setFormSubmissionStatus({ status: 'error', text: err.message }), + ); }; const onFinish = (values) => { @@ -263,35 +198,20 @@ const StudyRegistration: React.FunctionComponent = ( return (
- {formSubmissionStatus.status === 'success' ? ( + {(formSubmissionStatus.status === 'success') ? ( { - setFormSubmissionStatus(null); - setRegRequestPending(false); - setStudyUID(undefined); - }} - > + , , - - , ]} @@ -328,19 +241,9 @@ const StudyRegistration: React.FunctionComponent = ( return (
- + Registration Information -
- * - Indicates required fields -
+
* Indicates required fields
= ( hasFeedback rules={[{ required: true }]} > - {studies?.map((study) => ( ))} @@ -383,19 +275,19 @@ const StudyRegistration: React.FunctionComponent = ( ]} >
- +
- + Get CEDAR User UUID - +
@@ -418,27 +310,17 @@ const StudyRegistration: React.FunctionComponent = ( name='repository' label='Study Data Repository' hasFeedback - help={ - - {' '} - If you have already selected a data repository, indicate it - here; otherwise, leave empty. -
- If you have deposited your data and you have a unique Study ID - for the data at the repository, enter it below; otherwise, leave - blank. + help={( + If you have already selected a data repository, indicate it here; + otherwise, leave empty.
+ If you have deposited your data and you have a unique Study ID for the data at + the repository, enter it below; otherwise, leave blank.
- } + )} > - - + @@ -449,41 +331,23 @@ const StudyRegistration: React.FunctionComponent = ( - - - + + + - + - + - - - + + + - + @@ -498,8 +362,13 @@ const StudyRegistration: React.FunctionComponent = ( key={field.key} >
- - + + {fields.length > 1 ? ( = ( - {!userHasAccess() ? ( - + {(!userHasAccess()) ? ( + ) : ( - )} - From 9970263af2025d4ab9391363e7ab02b5301cede2 Mon Sep 17 00:00:00 2001 From: Jarvis Raymond Date: Thu, 26 Sep 2024 10:18:14 -0500 Subject: [PATCH 16/25] feat(discoveryEnhancedLoading): Ran linter, resolved ESLINT err --- src/Discovery/Utils/MDSUtils/MDSUtils.jsx | 36 +++++++++---------- .../Utils/MDSUtils/MDSUtils.test.jsx | 22 ++++++------ .../Utils/aggMDSUtils/aggMDSUtils.jsx | 2 +- .../Utils/aggMDSUtils/aggMDSUtils.test.jsx | 2 +- 4 files changed, 30 insertions(+), 32 deletions(-) diff --git a/src/Discovery/Utils/MDSUtils/MDSUtils.jsx b/src/Discovery/Utils/MDSUtils/MDSUtils.jsx index 9309f7114f..a48c1c37e2 100644 --- a/src/Discovery/Utils/MDSUtils/MDSUtils.jsx +++ b/src/Discovery/Utils/MDSUtils/MDSUtils.jsx @@ -45,26 +45,26 @@ export const loadStudiesFromMDS = async (guidType = 'discovery_metadata') => { export const getSomeStudiesFromMDS = async (guidType = 'discovery_metadata', numberOfStudies = 10) => { try { - let someStudies = []; - const url = `${mdsURL}?data=True&_guid_type=${guidType}&limit=${numberOfStudies}`; - const res = await fetch(url); - if (res.status !== 200) { - throw new Error(`Request for study data at ${url} failed. + let someStudies = []; + const url = `${mdsURL}?data=True&_guid_type=${guidType}&limit=${numberOfStudies}`; + const res = await fetch(url); + if (res.status !== 200) { + throw new Error(`Request for study data at ${url} failed. Response: ${JSON.stringify(res, null, 2)}`); + } + // eslint-disable-next-line no-await-in-loop + const jsonResponse = await res.json(); + const studies = Object.values(jsonResponse).map((entry) => { + const study = { ...entry[STUDY_DATA_FIELD] }; + // copy VLMD info if exists + if (studyRegistrationConfig?.dataDictionaryField + && entry[studyRegistrationConfig.dataDictionaryField]) { + study[studyRegistrationConfig.dataDictionaryField] = entry[studyRegistrationConfig.dataDictionaryField]; } - // eslint-disable-next-line no-await-in-loop - const jsonResponse = await res.json(); - const studies = Object.values(jsonResponse).map((entry) => { - const study = { ...entry[STUDY_DATA_FIELD] }; - // copy VLMD info if exists - if (studyRegistrationConfig?.dataDictionaryField && - entry[studyRegistrationConfig.dataDictionaryField]) { - study[studyRegistrationConfig.dataDictionaryField] = entry[studyRegistrationConfig.dataDictionaryField]; - } - return study; - }); - someStudies = someStudies.concat(studies); - return someStudies; + return study; + }); + someStudies = someStudies.concat(studies); + return someStudies; } catch (err) { throw new Error(`Request for study data failed: ${err}`); } diff --git a/src/Discovery/Utils/MDSUtils/MDSUtils.test.jsx b/src/Discovery/Utils/MDSUtils/MDSUtils.test.jsx index 0e2fee0107..7efd4d6a10 100644 --- a/src/Discovery/Utils/MDSUtils/MDSUtils.test.jsx +++ b/src/Discovery/Utils/MDSUtils/MDSUtils.test.jsx @@ -43,7 +43,7 @@ describe('MDS Data Loading Functions', () => { expect(studies).toEqual([{ name: 'Study 1' }, { name: 'Study 2' }]); expect(fetch).toHaveBeenCalledTimes(1); expect(fetch).toHaveBeenCalledWith( - `${mdsURL}?data=True&_guid_type=discovery_metadata&limit=2000&offset=0` + `${mdsURL}?data=True&_guid_type=discovery_metadata&limit=2000&offset=0`, ); }); @@ -54,19 +54,17 @@ describe('MDS Data Loading Functions', () => { it('should load up to 2000 studies, then load more with a secondary request', async () => { const mockStudies = new Array(2500).fill({ mockStudy: 'info' }); // Simulate first fetch (2000 studies) - fetch.mockImplementationOnce(() => - Promise.resolve({ - status: 200, - json: () => Promise.resolve(mockStudies.slice(0, 2000)), - }) + fetch.mockImplementationOnce(() => Promise.resolve({ + status: 200, + json: () => Promise.resolve(mockStudies.slice(0, 2000)), + }), ); // Simulate second fetch (500 studies) - fetch.mockImplementationOnce(() => - Promise.resolve({ - status: 200, - json: () => Promise.resolve(mockStudies.slice(2000, 2500)), - }) + fetch.mockImplementationOnce(() => Promise.resolve({ + status: 200, + json: () => Promise.resolve(mockStudies.slice(2000, 2500)), + }), ); const studies = await loadStudiesFromMDS(); expect(fetch).toHaveBeenCalledTimes(2); @@ -89,7 +87,7 @@ describe('MDS Data Loading Functions', () => { expect(studies).toEqual([{ name: 'Study 1' }, { name: 'Study 2' }]); expect(fetch).toHaveBeenCalledTimes(1); expect(fetch).toHaveBeenCalledWith( - `${mdsURL}?data=True&_guid_type=discovery_metadata&limit=2` + `${mdsURL}?data=True&_guid_type=discovery_metadata&limit=2`, ); }); it('should throw an error on fetch failure', async () => { diff --git a/src/Discovery/Utils/aggMDSUtils/aggMDSUtils.jsx b/src/Discovery/Utils/aggMDSUtils/aggMDSUtils.jsx index b70027c2ce..440d072f2c 100644 --- a/src/Discovery/Utils/aggMDSUtils/aggMDSUtils.jsx +++ b/src/Discovery/Utils/aggMDSUtils/aggMDSUtils.jsx @@ -67,7 +67,7 @@ const loadStudiesFromAggMDSRequests = async (offset, limit) => { return allStudies; }; -const loadStudiesFromAggMDS = async (limit=2000) => { +const loadStudiesFromAggMDS = async (limit = 2000) => { // Retrieve from aggregate MDS const offset = 0; // For pagination const studies = await loadStudiesFromAggMDSRequests(offset, limit); diff --git a/src/Discovery/Utils/aggMDSUtils/aggMDSUtils.test.jsx b/src/Discovery/Utils/aggMDSUtils/aggMDSUtils.test.jsx index 15b09ca9ba..06453482e2 100644 --- a/src/Discovery/Utils/aggMDSUtils/aggMDSUtils.test.jsx +++ b/src/Discovery/Utils/aggMDSUtils/aggMDSUtils.test.jsx @@ -56,7 +56,7 @@ describe('loadStudiesFromAggMDS', () => { const expectedErrorMsg = `Request for study data at ${url} failed.`; let actualErrorMsg = null; try { - const result = await loadStudiesFromAggMDS(); + await loadStudiesFromAggMDS(); } catch (e) { actualErrorMsg = e.message; } From c1aef4ddc0d64059b481ca80c4b2f99740e7b173 Mon Sep 17 00:00:00 2001 From: Jarvis Raymond Date: Thu, 26 Sep 2024 10:21:40 -0500 Subject: [PATCH 17/25] feat(discoveryEnhancedLoading): Fixed unused var lint err --- src/Discovery/Utils/MDSUtils/MDSUtils.test.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Discovery/Utils/MDSUtils/MDSUtils.test.jsx b/src/Discovery/Utils/MDSUtils/MDSUtils.test.jsx index 7efd4d6a10..f3a0316a76 100644 --- a/src/Discovery/Utils/MDSUtils/MDSUtils.test.jsx +++ b/src/Discovery/Utils/MDSUtils/MDSUtils.test.jsx @@ -15,7 +15,7 @@ const checkForFetchError = async (targetFunction) => { const expectedErrorMsg = 'Request for study data failed: Error'; let actualErrorMsg = null; try { - const studies = await targetFunction(); + await targetFunction(); } catch (e) { actualErrorMsg = e.message; } From 09fe3b7c627cb58e10ec02c8e13b2874970177e0 Mon Sep 17 00:00:00 2001 From: Jarvis Raymond Date: Fri, 27 Sep 2024 13:10:18 -0500 Subject: [PATCH 18/25] feat(discoveryEnhancedLoading): Updated aggMDSUtils to try to placate failing test that only fails in Github --- src/Discovery/Utils/aggMDSUtils/aggMDSUtils.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Discovery/Utils/aggMDSUtils/aggMDSUtils.jsx b/src/Discovery/Utils/aggMDSUtils/aggMDSUtils.jsx index 440d072f2c..1017666750 100644 --- a/src/Discovery/Utils/aggMDSUtils/aggMDSUtils.jsx +++ b/src/Discovery/Utils/aggMDSUtils/aggMDSUtils.jsx @@ -41,7 +41,7 @@ const loadStudiesFromAggMDSRequests = async (offset, limit) => { // If the discoveryConfig has a tag with the same name as one of the fields on an entry, // add the value of that field as a tag. - discoveryConfig.tagCategories.forEach((tag) => { + discoveryConfig?.tagCategories.forEach((tag) => { if (tag.name in entryUnpacked) { if (typeof entryUnpacked[tag.name] === 'string') { const tagValue = entryUnpacked[tag.name]; From 6d9b9c5834483ceb7b6783ad390b6e7b0d6f1404 Mon Sep 17 00:00:00 2001 From: Jarvis Raymond Date: Thu, 3 Oct 2024 13:12:40 -0500 Subject: [PATCH 19/25] feat(discoveryEnhancedLoading): Changed references from allBatchesAreLoaded to allBatchesAreReady to improve clarity --- src/Discovery/Discovery.tsx | 6 +++--- .../DiscoveryLoadingProgressBar.test.tsx | 6 +++--- .../DiscoveryLoadingProgressBar.tsx | 12 ++++++------ src/Discovery/DiscoverySummary.tsx | 4 ++-- src/Discovery/index.tsx | 7 ++++--- 5 files changed, 18 insertions(+), 17 deletions(-) diff --git a/src/Discovery/Discovery.tsx b/src/Discovery/Discovery.tsx index ea19c562ec..00e7ec129c 100644 --- a/src/Discovery/Discovery.tsx +++ b/src/Discovery/Discovery.tsx @@ -216,7 +216,7 @@ export interface Props { onAccessSortDirectionSet: (accessSortDirection: AccessSortDirection) => any, onResourcesSelected: (resources: DiscoveryResource[]) => any, onPaginationSet: (pagination: { currentPage: number, resultsPerPage: number }) => any, - allBatchesAreLoaded: boolean, + allBatchesAreReady: boolean, } const Discovery: React.FunctionComponent = (props: Props) => { @@ -241,7 +241,7 @@ const Discovery: React.FunctionComponent = (props: Props) => { const [discoveryTopPadding, setDiscoveryTopPadding] = useState(30); const discoveryAccessibilityLinksRef = useRef(null); - const batchesAreLoading = props.allBatchesAreLoaded === false; + const batchesAreLoading = props.allBatchesAreReady === false; const BatchLoadingSpinner = () => (
@@ -674,7 +674,7 @@ const Discovery: React.FunctionComponent = (props: Props) => { {/* Header with stats */}
diff --git a/src/Discovery/DiscoveryLoadingProgressBar/DiscoveryLoadingProgressBar.test.tsx b/src/Discovery/DiscoveryLoadingProgressBar/DiscoveryLoadingProgressBar.test.tsx index ea34d2a62f..d2da194b55 100644 --- a/src/Discovery/DiscoveryLoadingProgressBar/DiscoveryLoadingProgressBar.test.tsx +++ b/src/Discovery/DiscoveryLoadingProgressBar/DiscoveryLoadingProgressBar.test.tsx @@ -5,13 +5,13 @@ import DiscoveryLoadingProgressBar from './DiscoveryLoadingProgressBar'; describe('DiscoveryLoadingProgressBar', () => { it('renders the progress bar and loading text when displayProgressBar is true', () => { - render(); + render(); expect(screen.getByRole('progressbar')).toBeInTheDocument(); expect(screen.getByText('Loading studies...')).toBeInTheDocument(); }); - it('sets progress to 100% when allBatchesAreLoaded is true', () => { - render(); + it('sets progress to 100% when allBatchesAreReady is true', () => { + render(); const progressBar = screen.getByRole('progressbar'); expect(progressBar).toHaveAttribute('aria-valuenow', '100'); }); diff --git a/src/Discovery/DiscoveryLoadingProgressBar/DiscoveryLoadingProgressBar.tsx b/src/Discovery/DiscoveryLoadingProgressBar/DiscoveryLoadingProgressBar.tsx index 1319b744e6..69b7d46d13 100644 --- a/src/Discovery/DiscoveryLoadingProgressBar/DiscoveryLoadingProgressBar.tsx +++ b/src/Discovery/DiscoveryLoadingProgressBar/DiscoveryLoadingProgressBar.tsx @@ -3,11 +3,11 @@ import { Progress } from 'antd'; import './DiscoveryLoadingProgress.css'; interface DiscoveryLoadingProgressBarProps { - allBatchesAreLoaded: boolean; + allBatchesAreReady: boolean; } const DiscoveryLoadingProgressBar = ({ - allBatchesAreLoaded, + allBatchesAreReady, }: DiscoveryLoadingProgressBarProps) => { const [percent, setPercent] = useState(0); const [displayProgressBar, setDisplayProgressBar] = useState(true); @@ -21,20 +21,20 @@ const DiscoveryLoadingProgressBar = ({ setPercent((prevPercent) => prevPercent + percentIncrementAmount); }, percentUpdateInterval); return () => clearInterval(interval); - }, [percent, allBatchesAreLoaded]); + }, [percent, allBatchesAreReady]); - // hide the bar after a delay after the batches are loaded, + // hide the bar after a delay after the batches are ready, // giving the browser some time to process the batch const delayTimeBeforeHidingProgressBar = 2500; useEffect(() => { - if (allBatchesAreLoaded) { + if (allBatchesAreReady) { setPercent(100); // Change displayProgressBar to false after delay setTimeout(() => { setDisplayProgressBar(false); }, delayTimeBeforeHidingProgressBar); } - }, [allBatchesAreLoaded]); + }, [allBatchesAreReady]); return ( diff --git a/src/Discovery/DiscoverySummary.tsx b/src/Discovery/DiscoverySummary.tsx index 47a184c20a..1926795bd7 100644 --- a/src/Discovery/DiscoverySummary.tsx +++ b/src/Discovery/DiscoverySummary.tsx @@ -56,7 +56,7 @@ const renderAggregation = (aggregation: AggregationConfig, studies: any[] | null interface Props { visibleResources: any[] | null; config: DiscoveryConfig; - allBatchesAreLoaded: boolean; + allBatchesAreReady: boolean; } const DiscoverySummary = (props: Props) => ( @@ -74,7 +74,7 @@ const DiscoverySummary = (props: Props) => ( {aggregation.name}
- +
)) diff --git a/src/Discovery/index.tsx b/src/Discovery/index.tsx index 7daea19e48..800328feca 100644 --- a/src/Discovery/index.tsx +++ b/src/Discovery/index.tsx @@ -106,6 +106,7 @@ const DiscoveryWithMDSBackend: React.FC<{ loadStudiesParameters, ); let rawStudiesUnregistered: any[] = []; + if (isEnabled('studyRegistration')) { // Load fewer raw studies if on the first studies batch // Otherwise load them all @@ -207,15 +208,15 @@ const DiscoveryWithMDSBackend: React.FC<{ studyRegistrationValidationField = undefined; } - const allBatchesAreLoaded = studies === null + const allBatchesAreReady = studies === null ? false - : (studies as Array)?.length > totalNumberOfStudiesFromSmallBatches; + : (studies as Array)?.length !== totalNumberOfStudiesFromSmallBatches; return ( ); From 790bbd90df939293263b6a8222547c982ae9c42e Mon Sep 17 00:00:00 2001 From: Jarvis Raymond Date: Thu, 3 Oct 2024 13:14:55 -0500 Subject: [PATCH 20/25] feat(discoveryEnhancedLoading): updated comment for clarity --- src/Discovery/index.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Discovery/index.tsx b/src/Discovery/index.tsx index 800328feca..218bad3cfe 100644 --- a/src/Discovery/index.tsx +++ b/src/Discovery/index.tsx @@ -85,8 +85,7 @@ const DiscoveryWithMDSBackend: React.FC<{ const numberOfStudiesForAllStudiesBatch = 2000; useEffect(() => { - // If batch loading is Enabled, update the numberOfBatchesLoaded to enable calling of different batch sizes - // with different parameters + // Update the numberOfBatchesLoaded to enable calling of different batch sizes with different parameters if (numberOfBatchesLoaded < expectedNumberOfTotalBatches) setNumberOfBatchesLoaded(numberOfBatchesLoaded + 1); const studyRegistrationValidationField = studyRegistrationConfig?.studyRegistrationValidationField; From 81cbd259ef6113d3313e810ee8d610243a296112 Mon Sep 17 00:00:00 2001 From: Jarvis Raymond Date: Fri, 4 Oct 2024 08:35:59 -0500 Subject: [PATCH 21/25] feat(discoveryEnhancedLoading): began refactor of MDSUtils to ingest multiple params --- data/dictionary.json | 11456 +- data/schema.json | 166599 ++------------- src/Discovery/Utils/MDSUtils/MDSUtils.jsx | 36 +- .../Utils/MDSUtils/MDSUtils.test.jsx | 83 +- src/Discovery/index.tsx | 17 +- 5 files changed, 20417 insertions(+), 157774 deletions(-) diff --git a/data/dictionary.json b/data/dictionary.json index 61271e9483..67724bdc3e 100644 --- a/data/dictionary.json +++ b/data/dictionary.json @@ -164,17 +164,15 @@ "description": "The current state of the object.\n" } }, - "state_comment": { - "description": "Optional comment about why the file is in the current state, mainly for invalid state.\n", - "type": "string" - }, "submitter_id": { - "description": "The file ID assigned by the submitter.", + "description": "A project-specific identifier for a node. This property is the calling card/nickname/alias for a unit of submission. It can be used in place of the UUID for identifying or recalling a node.\n", "type": [ - "string", - "null" + "string" ] }, + "type": { + "type": "string" + }, "updated_datetime": { "oneOf": [ { @@ -263,6 +261,29 @@ }, "type": "object" }, + "foreign_key_project": { + "additionalProperties": true, + "properties": { + "code": { + "type": "string" + }, + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + } + }, + "type": "object" + }, "id": "_definitions", "md5sum": { "pattern": "^[a-f0-9]{32}$", @@ -296,14 +317,7 @@ "WARN" ], "term": { - "description": "State classification given by FASTQC for the metric. Metric specific details about the states are available on their website.\n", - "termDef": { - "cde_id": null, - "cde_version": null, - "source": "FastQC", - "term": "QC Metric State", - "term_url": "http://www.bioinformatics.babraham.ac.uk/projects/fastqc/Help/3%20Analysis%20Modules/" - } + "$ref": "_terms.yaml#/qc_metric_state" } }, "release_state": { @@ -357,10 +371,39 @@ } }, "to_many": { + "anyOf": [ + { + "items": { + "$ref": "#/foreign_key", + "minItems": 1 + }, + "type": "array" + }, + { + "$ref": "#/foreign_key" + } + ] + }, + "to_many_project": { + "anyOf": [ + { + "items": { + "$ref": "#/foreign_key_project", + "minItems": 1 + }, + "type": "array" + }, + { + "$ref": "#/foreign_key_project" + } + ] + }, + "to_one": { "anyOf": [ { "items": { "additionalProperties": true, + "maxItems": 1, "minItems": 1, "properties": { "id": { @@ -410,7 +453,7 @@ } ] }, - "to_one": { + "to_one_project": { "anyOf": [ { "items": { @@ -418,6 +461,9 @@ "maxItems": 1, "minItems": 1, "properties": { + "code": { + "type": "string" + }, "id": { "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", "term": { @@ -431,9 +477,6 @@ } }, "type": "string" - }, - "submitter_id": { - "type": "string" } }, "type": "object" @@ -443,6 +486,9 @@ { "additionalProperties": true, "properties": { + "code": { + "type": "string" + }, "id": { "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", "term": { @@ -456,9 +502,6 @@ } }, "type": "string" - }, - "submitter_id": { - "type": "string" } }, "type": "object" @@ -567,142 +610,26 @@ } }, "workflow_properties": { - "created_datetime": { - "oneOf": [ - { - "format": "date-time", - "type": "string" - }, - { - "type": "null" - } - ], - "term": { - "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" - } - }, - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "systemAlias": "node_id", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "project_id": { - "term": { - "description": "Unique ID for any specific defined piece of work that is undertaken or attempted to meet a single requirement.\n" - }, - "type": "string" - }, - "state": { - "default": "validated", - "downloadable": [ - "uploaded", - "md5summed", - "validating", - "validated", - "error", - "invalid", - "released" - ], - "oneOf": [ - { - "enum": [ - "uploading", - "uploaded", - "md5summing", - "md5summed", - "validating", - "error", - "invalid", - "suppressed", - "redacted", - "live" - ] - }, - { - "enum": [ - "validated", - "submitted", - "released" - ] - } - ], - "public": [ - "live" - ], - "term": { - "description": "The current state of the object.\n" - } - }, - "submitter_id": { - "description": "The file ID assigned by the submitter.", - "type": [ - "string", - "null" - ] - }, - "updated_datetime": { - "oneOf": [ - { - "format": "date-time", - "type": "string" - }, - { - "type": "null" - } - ], - "term": { - "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" - } - }, + "$ref": "#/ubiquitous_properties", "workflow_end_datetime": { - "oneOf": [ - { - "format": "date-time", - "type": "string" - }, - { - "type": "null" - } - ], - "term": { - "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" - } + "$ref": "#/datetime" }, "workflow_link": { "description": "Link to Github hash for the CWL workflow used.", "type": "string" }, "workflow_start_datetime": { - "oneOf": [ - { - "format": "date-time", - "type": "string" - }, - { - "type": "null" - } - ], - "term": { - "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" - } + "$ref": "#/datetime" }, "workflow_version": { - "description": "Major version for a GDC workflow.", + "description": "Major version for a HEAL workflow.", "type": "string" } } }, "_settings": { + "_dict_commit": "b7d654c227b12d91534d40dcec91f977d71d3eef", + "_dict_version": "1.1.0", "enable_case_cache": false }, "_terms": { @@ -783,7 +710,7 @@ } }, "ajcc_clinical_stage": { - "description": "Stage group determined from clinical information on the tumor (T), regional node (N) and metastases (M) and by grouping cases with similar prognosis for cancer.\n", + "description": "Stage group determined from clinical information on the tumor (T), regional node (N) and metastases (M) and by grouping subjects with similar prognosis for cancer.\n", "termDef": { "cde_id": 3440332, "cde_version": 1, @@ -1430,6 +1357,16 @@ "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=649&version=4.1" } }, + "hemoglobin": { + "description": "The value (g/dL) for a medical procedure that involves testing a sample of blood for hemoglobin, red respiratory protein of erythrocytes, to help determine a diagnosis, plan treatment, check to see if treatment is working, or monitor the disease over time.\n", + "termDef": { + "cde_id": 2190, + "cde_version": 3, + "source": "caDSR", + "term": "Laboratory Procedure Hemoglobin Result Specified Value", + "term_url": "https://cdebrowser.nci.nih.gov/cdebrowserClient/cdeBrowser.html#/search?publicId=2190&version=3.0" + } + }, "her2_erbb2_percent_positive_ihc": { "description": "Classification to represent the number of positive HER2/ERBB2 cells in a specimen or sample.\n", "termDef": { @@ -1857,6 +1794,16 @@ "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=64181&version=3.0" } }, + "platelet_count": { + "description": "The absolute peripheral platelet count (in 1000/mm3).\n", + "termDef": { + "cde_id": 58304, + "cde_version": 4, + "source": "caDSR", + "term": "Laboratory Procedure Platelet Result Specified Value", + "term_url": "https://cdebrowser.nci.nih.gov/cdebrowserClient/cdeBrowser.html#/search?publicId=58304&version=4.0" + } + }, "platform": { "description": "Name of the platform used to obtain data.\n" }, @@ -1891,12 +1838,12 @@ } }, "primary_diagnosis": { - "description": "Text term for the structural pattern of cancer cells used to define a microscopic diagnosis.\n", + "description": "Disease definition term (cancer, kidney, cardiovascular/cerebrovascular, etc) by ICD-9 CM Coding Book (9th Revision, 3rd Edition)\n", "termDef": { "cde_id": 3081934, "cde_version": 3, "source": "caDSR", - "term": "Neoplasm Histologic Type Name", + "term": "ICD-9 CM Coding Book 9th Revision 3rd Edition", "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3081934&version=3.0" } }, @@ -1980,7 +1927,7 @@ "description": "The length of the reads.\n" }, "relationship_age_at_diagnosis": { - "description": "The age (in years) when the patient's relative was first diagnosed.\n", + "description": "The age (in years) when the patient's relative was first diagnosed. If the age is greater than 89 years, see 'relationship_age_at_diagnosis_gt89'.\n", "termDef": { "cde_id": 5300571, "cde_version": 1, @@ -1989,6 +1936,16 @@ "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=5300571&version=1.0" } }, + "relationship_age_at_diagnosis_gt89": { + "description": "Indicate if the the age (in years) when the patient's relative was first diagnosed is greater than 89 years.\n", + "termDef": { + "cde_id": 5300571, + "cde_version": 1, + "source": "caDSR", + "term": "Relative Diagnosis Age Value Greater than 89", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=5300571&version=1.0" + } + }, "relationship_type": { "description": "The subgroup that describes the state of connectedness between members of the unit of society organized around kinship ties.\n", "termDef": { @@ -2038,6 +1995,16 @@ "sequencing_center": { "description": "Name of the center that provided the sequence files.\n" }, + "sex": { + "description": "The assemblage of physical properties or qualities by which male is distinguished from female; the physical difference between male and female; the distinguishing peculiarity of male or female.\n", + "termDef": { + "cde_id": 2200602, + "cde_version": 3, + "source": "NCI Thesaurus", + "term": "Self Reported Person Sex Text Type", + "term_url": "https://cdebrowser.nci.nih.gov/cdebrowserClient/cdeBrowser.html#/search?publicId=2200602&version=3.0" + } + }, "shortest_dimension": { "description": "Numeric value that represents the shortest dimension of the sample, measured in millimeters.\n", "termDef": { @@ -2317,6 +2284,16 @@ "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=5&version=5.0" } }, + "wbc": { + "description": "The absolute peripheral white blood cell count (in 1000/uL).\n", + "termDef": { + "cde_id": 58312, + "cde_version": 3, + "source": "caDSR", + "term": "Laboratory Procedure Leukocyte Result Specified Value", + "term_url": "https://cdebrowser.nci.nih.gov/cdebrowserClient/cdeBrowser.html#/search?publicId=58312&version=3.0" + } + }, "weight": { "description": "The weight of the patient measured in kilograms.\n", "termDef": { @@ -2351,7 +2328,7 @@ } }, "year_of_death": { - "description": "Numeric value to represent the year of the death of an individual.\n", + "description": "Numeric value to represent the year of the death of an individual. 9999=Missing/Alive\n", "termDef": { "cde_id": 2897030, "cde_version": 1, @@ -2381,241 +2358,32 @@ } } }, - "acknowledgement": { + "clinical_trial_file": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, - "category": "administrative", - "description": "Acknowledgement of an individual involved in a project.", - "id": "acknowledgement", + "category": "data_file", + "description": "The restricted access file containing patient level data associated with a clinical trial.\n", + "id": "clinical_trial_file", "links": [ { - "backref": "acknowledgements", - "label": "contribute_to", - "multiplicity": "many_to_many", - "name": "projects", + "backref": "clinical_trial_files", + "label": "data_from", + "multiplicity": "many_to_one", + "name": "core_metadata_collections", "required": true, - "target_type": "project" + "target_type": "core_metadata_collection" } ], - "namespace": "http://gdc.nci.nih.gov", + "namespace": "https://data.heal.org", "program": "*", "project": "*", "properties": { - "acknowledgee": { - "description": "The indvidiual or group being acknowledged by the project.", - "type": "string" - }, - "created_datetime": { - "oneOf": [ - { - "format": "date-time", - "type": "string" - }, - { - "type": "null" - } - ], - "term": { - "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" - } - }, - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "systemAlias": "node_id", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "project_id": { - "type": "string" - }, - "projects": { - "anyOf": [ - { - "items": { - "additionalProperties": true, - "minItems": 1, - "properties": { - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "submitter_id": { - "type": "string" - } - }, - "type": "object" - }, - "type": "array" - }, - { - "additionalProperties": true, - "properties": { - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "submitter_id": { - "type": "string" - } - }, - "type": "object" - } - ] - }, - "state": { - "default": "validated", - "downloadable": [ - "uploaded", - "md5summed", - "validating", - "validated", - "error", - "invalid", - "released" - ], - "oneOf": [ - { - "enum": [ - "uploading", - "uploaded", - "md5summing", - "md5summed", - "validating", - "error", - "invalid", - "suppressed", - "redacted", - "live" - ] - }, - { - "enum": [ - "validated", - "submitted", - "released" - ] - } - ], - "public": [ - "live" - ], - "term": { - "description": "The current state of the object.\n" - } - }, - "submitter_id": { - "type": [ - "string", - "null" - ] - }, - "type": { - "enum": [ - "acknowledgement" - ] - }, - "updated_datetime": { - "oneOf": [ - { - "format": "date-time", - "type": "string" - }, - { - "type": "null" - } - ], - "term": { - "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" - } - } - }, - "required": [ - "submitter_id", - "projects" - ], - "submittable": true, - "systemProperties": [ - "id", - "project_id", - "state", - "created_datetime", - "updated_datetime" - ], - "title": "Acknowledgement", - "type": "object", - "uniqueKeys": [ - [ - "id" - ], - [ - "project_id", - "submitter_id" - ] - ], - "validators": null - }, - "aligned_reads_index": { - "$schema": "http://json-schema.org/draft-04/schema#", - "additionalProperties": false, - "category": "index_file", - "description": "Data file containing the index for a set of aligned reads.", - "id": "aligned_reads_index", - "links": [ - { - "backref": "aligned_reads_indexes", - "label": "derived_from", - "multiplicity": "one_to_one", - "name": "submitted_aligned_reads_files", - "required": true, - "target_type": "submitted_aligned_reads" - }, - { - "backref": "aligned_reads_indexes", - "label": "data_from", - "multiplicity": "many_to_many", - "name": "core_metadata_collections", - "required": false, - "target_type": "core_metadata_collection" - } - ], - "namespace": "http://gdc.nci.nih.gov", - "program": "*", - "project": "*", - "properties": { - "core_metadata_collections": { + "core_metadata_collections": { "anyOf": [ { "items": { "additionalProperties": true, + "maxItems": 1, "minItems": 1, "properties": { "id": { @@ -2680,30 +2448,22 @@ } }, "data_category": { - "enum": [ - "Sequencing Data", - "Sequencing Reads", - "Raw Sequencing Data" - ], "term": { "description": "Broad categorization of the contents of the data file.\n" - } + }, + "type": "string" }, "data_format": { - "enum": [ - "BAI" - ], "term": { "description": "Format of the data files.\n" - } + }, + "type": "string" }, "data_type": { - "enum": [ - "Aligned Reads Index" - ], "term": { "description": "Specific content type of the data file.\n" - } + }, + "type": "string" }, "error_type": { "enum": [ @@ -2818,76 +2578,14 @@ "description": "The current state of the object.\n" } }, - "state_comment": { - "description": "Optional comment about why the file is in the current state, mainly for invalid state.\n", - "type": "string" - }, - "submitted_aligned_reads_files": { - "anyOf": [ - { - "items": { - "additionalProperties": true, - "maxItems": 1, - "minItems": 1, - "properties": { - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "submitter_id": { - "type": "string" - } - }, - "type": "object" - }, - "type": "array" - }, - { - "additionalProperties": true, - "properties": { - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "submitter_id": { - "type": "string" - } - }, - "type": "object" - } - ] - }, "submitter_id": { - "description": "The file ID assigned by the submitter.", + "description": "A project-specific identifier for a node. This property is the calling card/nickname/alias for a unit of submission. It can be used in place of the UUID for identifying or recalling a node.\n", "type": [ - "string", - "null" + "string" ] }, "type": { - "enum": [ - "aligned_reads_index" - ] + "type": "string" }, "updated_datetime": { "oneOf": [ @@ -2905,14 +2603,14 @@ } }, "required": [ + "type", "submitter_id", "file_name", "file_size", + "data_format", "md5sum", "data_category", - "data_type", - "data_format", - "submitted_aligned_reads_files" + "data_type" ], "submittable": true, "systemProperties": [ @@ -2920,11 +2618,9 @@ "project_id", "created_datetime", "updated_datetime", - "state", - "file_state", - "error_type" + "state" ], - "title": "Aligned Reads Index", + "title": "Clinical Trial File", "type": "object", "uniqueKeys": [ [ @@ -2937,107 +2633,104 @@ ], "validators": null }, - "aliquot": { + "core_metadata_collection": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, - "category": "biospecimen", - "constraints": null, - "description": "Pertaining to a portion of the whole; any one of two or more samples of something, of the same volume or weight.\n", - "id": "aliquot", + "category": "administrative", + "description": "Structured description of a collection of several datasets\n", + "id": "core_metadata_collection", "links": [ { - "backref": "aliquots", - "label": "derived_from", - "multiplicity": "many_to_many", - "name": "samples", + "backref": "core_metadata_collections", + "label": "data_from", + "multiplicity": "many_to_one", + "name": "projects", "required": true, - "target_type": "sample" + "target_type": "project" } ], + "namespace": "https://data.heal.org", "program": "*", "project": "*", "properties": { - "aliquot_quantity": { - "term": { - "description": "The quantity in micrograms (ug) of the aliquot(s) derived from the analyte(s) shipped for sequencing and characterization.\n", - "termDef": { - "cde_id": null, - "cde_version": null, - "source": null, - "term": "Biospecimen Aliquot Quantity", - "term_url": null - } - }, - "type": "number" - }, - "aliquot_volume": { - "term": { - "description": "The volume in microliters (ml) of the aliquot(s) derived from the analyte(s) shipped for sequencing and characterization.\n", - "termDef": { - "cde_id": null, - "cde_version": null, - "source": null, - "term": "Biospecimen Aliquot Volume", - "term_url": null - } - }, - "type": "number" + "accepts_healthy_volunteers": { + "description": "Indication that participants who do not have a disease or condition, or related conditions or symptoms, under study in the clinical study are permitted to participate in the clinical study.\n", + "enum": [ + "Yes", + "No" + ] }, - "amount": { - "term": { - "description": "Weight in grams or volume in mL.\n" - }, - "type": "number" + "actual_enrollment": { + "description": "The number of participants enrolled in the study\n", + "type": "string" }, - "analyte_type": { - "term": { - "description": "Text term that represents the kind of molecular specimen analyte.\n", - "termDef": { - "cde_id": 2513915, - "cde_version": 2, - "source": "caDSR", - "term": "Molecular Specimen Type Text Name", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2513915&version=2.0" - } - }, + "arm": { + "description": "Describes an expected sequence of events for one of the participants of a study. E.g. Exposure to drug A, wash-out, exposure to drug B, wash-out, follow-up.\n", + "type": "string" + }, + "arm_description": { + "description": "A succinct description of the path through the study that would be followed by a subject adhering to this arm.\n", "type": "string" }, - "analyte_type_id": { + "arm_name": { + "description": "Unique, human-readable label for this arm of the study.\n", "enum": [ - "D", - "E", - "G", - "H", - "R", - "S", - "T", - "W", - "X", - "Y" - ], - "term": { - "description": "A single letter code used to identify a type of molecular analyte.\n", - "termDef": { - "cde_id": 5432508, - "cde_version": 1, - "source": "caDSR", - "term": "Molecular Analyte Identification Code", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=5432508&version=1.0" - } - } + "Placebo", + "Remdesivir" + ] }, - "concentration": { - "term": { - "description": "Numeric value that represents the concentration of an analyte or aliquot extracted from the sample or sample portion, measured in milligrams per milliliter.\n", - "termDef": { - "cde_id": 5432594, - "cde_version": 1, - "source": "caDSR", - "term": "Biospecimen Analyte or Aliquot Extracted Concentration Milligram per Milliliter Value", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=5432594&version=1.0" - } - }, - "type": "number" + "arm_type": { + "description": "Categorization of study arm, e.g. experimental, active comparator, placebo comparater.\n", + "enum": [ + "Experimental", + "Active Comparator", + "Placebo Comparator", + "Sham Comparator", + "No Intervention" + ] + }, + "brief_summary": { + "description": "A short description of the clinical study, including a brief statement of the clinical study's hypothesis, written in language intended for the lay public.\n", + "type": "string" + }, + "brief_title": { + "description": "A short title of the clinical study written in language intended for the lay public. The title should include, where possible, information on the participants, condition being evaluated, and intervention(s) studied.\n", + "type": "string" + }, + "category": { + "description": "The nature of the investigation or investigational use for which clinical study information is being submitted.\n", + "enum": [ + "Interventional", + "Observational", + "Expanded Access" + ] + }, + "clinical_trial_website": { + "description": "Any originating or affiliated website for the respective clinical trial.\n", + "type": "string" + }, + "collaborators": { + "description": "Other organizations (if any) providing support. Support may include funding, design, implementation, data analysis or reporting. The responsible party is responsible for confirming all collaborators before listing them.\n", + "type": "string" + }, + "condition": { + "description": "The name(s) of the disease(s) or condition(s) studied in the clinical study, or the focus of the clinical study. Use, if available, appropriate descriptors from NLM's Medical Subject Headings (MeSH)-controlled vocabulary thesaurus or terms from another vocabulary, such as the Systematized Nomenclature of Medicine—Clinical Terms (SNOMED CT), that has been mapped to MeSH within the Unified Medical Language System (UMLS) Metathesaurus.\n", + "enum": [ + "COVID-19", + "Other" + ] + }, + "contact": { + "description": "Contact details to assist a user in learning more about or engaging with the study.\n", + "type": "string" + }, + "contributor": { + "description": "An entity responsible for making contributions to the resource. Examples of a Contributor include a person, an organization, or a service. Typically, the name of a Contributor should be used to indicate the entity.\n", + "type": "string" + }, + "coverage": { + "description": "The spatial or temporal topic of the resource, the spatial applicability of the resource, or the jurisdiction under which the resource is relevant. Spatial topic and spatial applicability may be a named place or a location specified by its geographic coordinates. Temporal topic may be a named period, date, or date range. A jurisdiction may be a named administrative entity or a geographic place to which the resource applies. Recommended best practice is to use a controlled vocabulary such as the Thesaurus of Geographic Names [TGN] (http://www.getty.edu/research/tools/vocabulary/tgn/index.html). Where appropriate, named places or time periods can be used in preference to numeric identifiers such as sets of coordinates or date ranges.\n", + "type": "string" }, "created_datetime": { "oneOf": [ @@ -3053,6 +2746,87 @@ "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" } }, + "creator": { + "description": "An organization that initiates the investigation and is legally responsible for the study.\n", + "type": "string" + }, + "data_availability_date": { + "description": "The date of availability for the controlled access patient-level data. This date indicates when users may request access to this data.\n", + "type": "string" + }, + "data_available": { + "description": "A description of the type of controlled-acccess data that can be requested.\n", + "enum": [ + "Patient-Level Data", + "Other" + ] + }, + "data_available_for_request": { + "description": "Whether users may request access to this data.\n", + "type": "boolean" + }, + "data_category": { + "term": { + "description": "Broad categorization of the contents of the data file.\n" + }, + "type": "string" + }, + "data_format": { + "term": { + "description": "Format of the data files.\n" + }, + "type": "string" + }, + "data_type": { + "term": { + "description": "Specific content type of the data file.\n" + }, + "type": "string" + }, + "description": { + "description": "Extended description of the protocol, including more technical information, if desired. Do not include the entire protocol; do not duplicate information recorded in other data elements, such as Eligibility Criteria or outcome measures.\n", + "type": "string" + }, + "eligibility_criteria": { + "description": "A limited list of criteria for selection of participants in the clinical study, provided in terms of inclusion and exclusion criteria and suitable for assisting potential participants in identifying clinical studies of interest. Use a bulleted list for each criterion below the headers \"Inclusion Criteria\" and \"Exclusion Criteria\".\n", + "type": "string" + }, + "enrollment": { + "description": "Reference to a Group that defines the criteria for and quantity of subjects participating in the study. E.g. \" 200 female Europeans between the ages of 20 and 45 with early onset diabetes\".\n", + "type": "string" + }, + "fda_regulated_device_product": { + "description": "Indication that a clinical study is studying a device product subject to section 510(k), 515, or 520(m) of the Federal Food, Drug, and Cosmetic Act.\n", + "enum": [ + "Yes", + "No" + ] + }, + "fda_regulated_drug_product": { + "description": "Indication that a clinical study is studying a drug product (including a biological product) subject to section 505 of the Federal Food, Drug, and Cosmetic Act or to section 351 of the Public Health Service Act.\n", + "enum": [ + "Yes", + "No" + ] + }, + "first_posted_date": { + "description": "The date on which the study record was first available on ClinicalTrials.gov.\n", + "type": "string" + }, + "focus": { + "description": "Specify the codes for medications, devices and other interventions.\n", + "enum": [ + "Placebo", + "Remdesivir" + ] + }, + "has_data_monitoring_committee": { + "description": "Indicate whether a data monitoring committee has been appointed for this study. The data monitoring committee (board) is a group of independent scientists who are appointed to monitor the safety and scientific integrity of a human research intervention, and to make recommendations to the sponsor regarding the stopping of the trial for efficacy, for harms or for futility. The composition of the committee is dependent upon the scientific skills and knowledge required for monitoring the particular study.\n", + "enum": [ + "Yes", + "No" + ] + }, "id": { "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", "systemAlias": "node_id", @@ -3068,13 +2842,72 @@ }, "type": "string" }, + "intervention_type": { + "description": "For each intervention studied in the clinical study, the general type of intervention.\n", + "enum": [ + "Drug", + "Device", + "Biological/Vaccine", + "Procedure/Surgery", + "Radiation", + "Behavioral", + "Genetic", + "Dietary Supplement", + "Combination Product", + "Diagnostic Test", + "Other" + ] + }, + "ipd_sharing_statement": { + "description": "Indicate whether there is a plan to make individual participant data (IPD) collected in this study, including data dictionaries, available to other researchers (typically after the end of the study).\n", + "enum": [ + "Yes", + "No", + "Undecided" + ] + }, + "language": { + "description": "A language of the resource. Recommended best practice is to use a controlled vocabulary such as RFC 4646 (http://www.ietf.org/rfc/rfc4646.txt).\n", + "type": "string" + }, + "last_update_posted_date": { + "description": "The most recent date on which changes to a study record were made available on ClinicalTrials.gov.\n", + "type": "string" + }, + "location": { + "description": "Indicates a country, state or other region where the study is taking place.\n", + "items": { + "type": "string" + }, + "type": "array" + }, + "locations_removed": { + "description": "Indicates a country, state or other region that has been removed from the study.\n", + "type": "string" + }, + "nct_number": { + "description": "The organization's unique protocol identification number assigned to the clinical study.\n", + "type": "string" + }, + "original_estimated_enrollment": { + "description": "Original Estimated Enrollment\n", + "type": "string" + }, + "primary_completion_date": { + "description": "The date that the final participant was examined or received an intervention for the purposes of final collection of data for the primary outcome, whether the clinical study concluded according to the pre-specified protocol or was terminated. In the case of clinical studies with more than one primary outcome measure with different completion dates, this term refers to the date on which data collection is completed for all of the primary outcomes.\n", + "type": "string" + }, + "principle_investigator": { + "description": "A researcher in a study who oversees multiple aspects of the study, such as concept development, protocol writing, protocol submission for IRB approval, participant recruitment, informed consent, data collection, analysis, interpretation and presentation.\n", + "type": "string" + }, "project_id": { "term": { "description": "Unique ID for any specific defined piece of work that is undertaken or attempted to meet a single requirement.\n" }, "type": "string" }, - "samples": { + "projects": { "anyOf": [ { "items": { @@ -3082,6 +2915,9 @@ "maxItems": 1, "minItems": 1, "properties": { + "code": { + "type": "string" + }, "id": { "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", "term": { @@ -3095,9 +2931,6 @@ } }, "type": "string" - }, - "submitter_id": { - "type": "string" } }, "type": "object" @@ -3107,6 +2940,9 @@ { "additionalProperties": true, "properties": { + "code": { + "type": "string" + }, "id": { "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", "term": { @@ -3120,19 +2956,55 @@ } }, "type": "string" - }, - "submitter_id": { - "type": "string" } }, "type": "object" } ] }, - "source_center": { - "term": { - "description": "Name of the center that provided the item.\n" - }, + "prs_account": { + "description": "The account in the Protocol Registration and Results System that was used to register the clinical studu and to submit results information for the registered study.\n", + "type": "string" + }, + "publications": { + "description": "Citations to publications related to the protocol: background and/or results. Provide either the PubMed Unique Identifier (PMID) of an article or enter the full bibliographic citation.\n", + "type": "string" + }, + "publisher": { + "description": "An entity responsible for making the resource available. Examples of a Publisher include a person, an organization, or a service. Typically, the name of a Publisher should be used to indicate the entity.\n", + "type": "string" + }, + "recruitment_status": { + "description": "The recruitment status for the clinical study as a whole, based upon the status of the individual sites. If at least one facility in a multi-site clinical study has an Individual Site Status of \"Recruiting,\" then the Overall Recruitment Status for the study must be \"Recruiting.\"\n", + "enum": [ + "Not yet recruiting", + "Recruiting", + "Enrolling by invitation", + "Active, not recruiting", + "Completed", + "Suspended", + "Terminated", + "Withdrawn" + ] + }, + "responsible_party": { + "description": "An indication of whether the responsible party is the sponsor, the sponsor-investigator, or a principal investigator designated by the sponsor to be the responsible party.\n", + "enum": [ + "Sponsor", + "Principle Investigator", + "Sponsor-Investigator" + ] + }, + "rights": { + "description": "Information about rights held in and over the resource. Typically, rights information includes a statement about various property rights associated with the resource, including intellectual property rights.\n", + "type": "string" + }, + "secondary_id": { + "description": "An identifier(s) (ID), if any, other than the organization's Unique Protocol Identification Number or the NCT number that is assigned to the clinical study. This includes any unique clinical study identifiers assigned by other publicly available clinical trial registries. If the clinical study is funded in whole or in part by a U.S. Federal Government agency, the complete grant or contract number must be submitted as a Secondary ID.\n", + "type": "string" + }, + "source": { + "description": "A related resource from which the described resource is derived. The described resource may be derived from the related resource in whole or in part. Recommended best practice is to identify the related resource by means of a string conforming to a formal identification system.\n", "type": "string" }, "state": { @@ -3176,13 +3048,87 @@ "description": "The current state of the object.\n" } }, + "study_completion_date": { + "description": "The date the final participant was examined or received an intervention for purposes of final collection of data for the primary and secondary outcome measures and adverse events (for example, last participant’s last visit), whether the clinical study concluded according to the pre-specified protocol or was terminated.\n", + "type": "string" + }, + "study_design_allocation": { + "description": "The method by which participants are assigned to arms in a clinical trial.\n", + "enum": [ + "N/A", + "Randomized", + "Nonrandomized" + ] + }, + "study_design_intervention_model": { + "description": "The strategy for assigning interventions to participants.\n", + "enum": [ + "Single Group", + "Parallel", + "Crossover", + "Factorial", + "Sequential" + ] + }, + "study_design_masking": { + "description": "The party or parties involved in the clinical trial who are prevented from having knowledge of the interventions assigned to individual participants.\n", + "enum": [ + "Participant", + "Care Provider", + "Investigator", + "Outcomes Assessor", + "No Masking" + ] + }, + "study_design_primary_purpose": { + "description": "The main objective of the intervention(s) being evaluated by the clinical trial.\n", + "enum": [ + "Treatment", + "Prevention", + "Diagnostic", + "Supportive Care", + "Screening", + "Health Services", + "Basic Science", + "Device Feasibility", + "Other" + ] + }, + "study_phase": { + "description": "For a clinical trial of a drug product (including a biological product), the numerical phase of such clinical trial, consistent with terminology in 21 CFR 312.21 and in 21 CFR 312.85 for phase 4 studies.\n", + "enum": [ + "N/A", + "early-phase-1", + "phase-1", + "phase-1-phase-2", + "phase-2", + "phase-2-phase-3", + "phase-3", + "phase-4" + ] + }, + "study_start_date": { + "description": "The estimated date on which the clinical study will be open for recruitment of participants, or the actual date on which the first participant was enrolled.\n", + "type": "string" + }, + "subject": { + "description": "The topic of the resource. Typically, the subject will be represented using keywords, key phrases, or classification codes. Recommended best practice is to use a controlled vocabulary.\n", + "type": "string" + }, + "submitted_date": { + "description": "The date on which the study sponsor or investigator first submitted a study record to ClinicalTrials.gov.\n", + "type": "string" + }, "submitter_id": { - "description": "The legacy barcode used before prior to the use UUIDs. For TCGA this is bcraliquotbarcode.\n", + "description": "A project-specific identifier for a node. This property is the calling card/nickname/alias for a unit of submission. It can be used in place of the UUID for identifying or recalling a node.\n", "type": [ - "string", - "null" + "string" ] }, + "title": { + "description": "The title of the clinical study, corresponding to the title of the protocol.\n", + "type": "string" + }, "type": { "type": "string" }, @@ -3199,11 +3145,23 @@ "term": { "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" } + }, + "us_product": { + "description": "Whether any drug product (including a biological product) or device product studied in the clinical study is manufactured in the United States or one of its territories and exported for study in a clinical study in another country. Required if U.S. FDA-regulated Drug and/or U.S. FDA-regulated Device is \"Yes,\" U.S. FDA IND or IDE is \"No\", and Facility Information does not include at least one U.S. location.\n", + "enum": [ + "Yes", + "No" + ] + }, + "verification_date": { + "description": "The date on which the responsible party last verified the clinical study information in the entire ClinicalTrials.gov record for the clinical study, even if no additional or updated information is being submitted.\n", + "type": "string" } }, "required": [ "submitter_id", - "samples" + "type", + "projects" ], "submittable": true, "systemProperties": [ @@ -3213,7 +3171,7 @@ "created_datetime", "updated_datetime" ], - "title": "Aliquot", + "title": "Core Metadata Collection", "type": "object", "uniqueKeys": [ [ @@ -3224,22 +3182,22 @@ "submitter_id" ] ], - "validators": [] + "validators": null }, - "case": { + "data_release": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, - "category": "administrative", - "description": "The collection of all data related to a specific subject in the context of a specific experiment. \n", - "id": "case", + "category": "internal", + "description": "Internal node to store different data releases.\n", + "id": "data_release", "links": [ { - "backref": "cases", - "label": "member_of", + "backref": "data_releases", + "label": "describes", "multiplicity": "many_to_one", - "name": "experiments", + "name": "roots", "required": true, - "target_type": "experiment" + "target_type": "root" } ], "namespace": "http://gdc.nci.nih.gov", @@ -3260,19 +3218,61 @@ "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" } }, - "disease_type": { - "description": "Name of the disease for the case.", + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "systemAlias": "node_id", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "major_version": { + "description": "The number identifying the major version.\n", + "type": "integer" + }, + "minor_version": { + "description": "The number identifying the minor version.\n", + "type": "integer" + }, + "name": { + "description": "String representing release name.\n", "type": "string" }, - "experiments": { - "anyOf": [ + "release_date": { + "oneOf": [ { - "items": { - "additionalProperties": true, - "maxItems": 1, - "minItems": 1, - "properties": { - "id": { + "format": "date-time", + "type": "string" + }, + { + "type": "null" + } + ], + "term": { + "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" + } + }, + "released": { + "default": false, + "description": "Indicates if it is the current release.\n", + "type": "boolean" + }, + "roots": { + "anyOf": [ + { + "items": { + "additionalProperties": true, + "maxItems": 1, + "minItems": 1, + "properties": { + "id": { "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", "term": { "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", @@ -3319,80 +3319,10 @@ } ] }, - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "systemAlias": "node_id", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "primary_site": { - "description": "Primary site for the case.", - "type": "string" - }, - "project_id": { - "term": { - "description": "Unique ID for any specific defined piece of work that is undertaken or attempted to meet a single requirement.\n" - }, - "type": "string" - }, - "state": { - "default": "validated", - "downloadable": [ - "uploaded", - "md5summed", - "validating", - "validated", - "error", - "invalid", - "released" - ], - "oneOf": [ - { - "enum": [ - "uploading", - "uploaded", - "md5summing", - "md5summed", - "validating", - "error", - "invalid", - "suppressed", - "redacted", - "live" - ] - }, - { - "enum": [ - "validated", - "submitted", - "released" - ] - } - ], - "public": [ - "live" - ], - "term": { - "description": "The current state of the object.\n" - } - }, - "submitter_id": { - "type": [ - "string", - "null" - ] - }, "type": { - "type": "string" + "enum": [ + "data_release" + ] }, "updated_datetime": { "oneOf": [ @@ -3410,207 +3340,232 @@ } }, "required": [ - "submitter_id", - "experiments" + "name", + "major_version", + "minor_version", + "type" ], - "submittable": true, + "submittable": false, "systemProperties": [ "id", - "project_id", "created_datetime", - "updated_datetime", - "state" + "updated_datetime" ], - "title": "Case", + "title": "Data Release", "type": "object", "uniqueKeys": [ [ "id" - ], - [ - "project_id", - "submitter_id" ] ], "validators": null }, - "clinical_test": { + "metaschema": { "$schema": "http://json-schema.org/draft-04/schema#", - "additionalProperties": false, - "category": "clinical", - "description": "Metadata concerning any clinical tests used in relation to a case diagnosis. \n", - "id": "clinical_test", - "links": [ - { - "backref": "clinical_tests", - "label": "performed_for", - "multiplicity": "many_to_one", - "name": "cases", - "required": true, - "target_type": "case" - }, + "allOf": [ { - "backref": "clinical_tests", - "label": "relates_to", - "multiplicity": "many_to_many", - "name": "diagnoses", - "required": false, - "target_type": "diagnosis" + "$ref": "http://json-schema.org/draft-04/schema#" } ], - "namespace": "http://gdc.nci.nih.gov", - "program": "*", - "project": "*", - "properties": { - "biomarker_name": { - "term": { - "description": "The name of the biomarker being tested for this specimen and set of test results.\n", - "termDef": { - "cde_id": 5473, - "cde_version": 11, - "source": "caDSR", - "term": "Biomarker Name", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=5473&version=2.31" + "definitions": { + "link": { + "additionalProperties": false, + "properties": { + "backref": { + "$ref": "#/field" + }, + "label": { + "$ref": "#/field" + }, + "multiplicity": { + "enum": [ + "one_to_one", + "one_to_many", + "many_to_one", + "many_to_many" + ], + "type": "string" + }, + "name": { + "$ref": "#/field" + }, + "required": { + "type": "boolean" + }, + "target_type": { + "$ref": "#/field" } }, - "type": "string" - }, - "biomarker_result": { - "enum": [ - "Amplification", - "Gain", - "Loss", - "Normal", - "Other", - "Translocation", - "Not Reported", - "Not Allowed To Collect", - "Pending" - ], - "term": { - "description": "Text term to define the results of genetic testing.\n", - "termDef": { - "cde_id": 3234680, - "cde_version": 1, - "source": "caDSR", - "term": "Laboratory Procedure Genetic Abnormality Test Result Type", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3234680&version=1.0" - } - } - }, - "biomarker_test_method": { - "enum": [ - "Cytogenetics", - "FISH", - "IHC", - "Karyotype", - "NGS", - "Nuclear Staining", - "Other", - "RT-PCR", - "Southern", - "Not Reported", - "Not Allowed To Collect", - "Pending" + "required": [ + "name", + "target_type", + "backref", + "label", + "multiplicity", + "required" ], - "term": { - "description": "Text descriptor of a molecular analysis method used for an individual.\n", - "termDef": { - "cde_id": 3121575, - "cde_version": 1, - "source": "caDSR", - "term": "Disease Detection Molecular Analysis Method Type", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3121575&version=1.0" - } - } + "type": "object" }, - "cases": { - "anyOf": [ - { + "link_subgroup": { + "properties": { + "exclusive": { + "type": "boolean" + }, + "required": { + "type": "boolean" + }, + "subgroup": { "items": { - "additionalProperties": true, - "maxItems": 1, - "minItems": 1, - "properties": { - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" + "oneOf": [ + { + "$ref": "#/definitions/link" }, - "submitter_id": { - "type": "string" + { + "$ref": "#/definitions/link_subgroup" } - }, - "type": "object" + ] }, "type": "array" - }, - { - "additionalProperties": true, - "properties": { - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "submitter_id": { - "type": "string" - } - }, - "type": "object" - } - ] - }, - "cea_level_preoperative": { - "term": { - "description": "Numeric value of the Carcinoembryonic antigen or CEA at the time before surgery. [Manually- curated]\n", - "termDef": { - "cde_id": 2716510, - "cde_version": 1, - "source": "caDSR", - "term": "Preoperative Carcinoembryonic Antigen Result Value", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2716510&version=1.0" } }, - "type": "number" + "required": [ + "exclusive", + "required", + "subgroup" + ] }, - "created_datetime": { - "oneOf": [ - { - "format": "date-time", + "validator_def": { + "properties": { + "link_to_type": { "type": "string" }, - { - "type": "null" - } - ], - "term": { - "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" - } - }, - "diagnoses": { + "multiplicity": { + "enum": [ + "one_to_one", + "one_to_many", + "many_to_one", + "many_to_many" + ], + "type": "string" + } + }, + "required": [ + "property", + "function" + ], + "title": "Define a validator to be used on a property", + "type": "object" + } + }, + "field": { + "pattern": "^[_a-zA-Z0-9]*$", + "type": "string" + }, + "id": "metaschema", + "properties": { + "category": { + "$ref": "#/field", + "enum": [ + "administrative", + "analysis", + "biospecimen", + "clinical", + "data", + "data_bundle", + "data_file", + "index_file", + "metadata_file", + "notation", + "qc_bundle", + "TBD" + ] + }, + "links": { + "items": { + "oneOf": [ + { + "$ref": "#/definitions/link" + }, + { + "$ref": "#/definitions/link_subgroup" + } + ] + }, + "title": "Define a link to other GDC entities", + "type": "array" + }, + "properties": { + "additionalProperties": false, + "patternProperties": { + "^[_a-zA-Z0-9]*$": { + "type": "object" + } + }, + "type": "object" + }, + "submittable": { + "type": "boolean" + }, + "system_properties": { + "type": "array" + }, + "unique_keys": { + "items": { + "items": { + "type": "string" + }, + "type": "array" + }, + "type": "array" + }, + "validators": { + "items": { + "$ref": "#/definitions/validator_def" + }, + "type": [ + "array", + "null" + ] + } + }, + "required": [ + "category", + "program", + "project", + "uniqueKeys", + "links", + "validators", + "systemProperties", + "id" + ], + "title": "GDC JSON schema extension" + }, + "open_access_doc": { + "$schema": "http://json-schema.org/draft-04/schema#", + "additionalProperties": false, + "category": "administrative", + "description": "Open access documents related to a specific clinical trial.", + "id": "open_access_doc", + "links": [ + { + "backref": "open_access_docs", + "label": "data_from", + "multiplicity": "many_to_one", + "name": "core_metadata_collections", + "required": true, + "target_type": "core_metadata_collection" + } + ], + "namespace": "https://data.heal.org", + "program": "*", + "project": "*", + "properties": { + "core_metadata_collections": { "anyOf": [ { "items": { "additionalProperties": true, + "maxItems": 1, "minItems": 1, "properties": { "id": { @@ -3660,173 +3615,80 @@ } ] }, - "dlco_ref_predictive_percent": { - "term": { - "description": "The value, as a percentage of predicted lung volume, measuring the amount of carbon monoxide detected in a patient's lungs.\n", - "termDef": { - "cde_id": 2180255, - "cde_version": 1, - "source": "caDSR", - "term": "Lung Carbon Monoxide Diffusing Capability Test Assessment Predictive Value Percentage Value", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2180255&version=1.0" - } - }, - "type": "number" - }, - "estrogen_receptor_percent_positive_ihc": { - "enum": [ - "<1%", - "1-10%", - "11-20%", - "21-30%", - "31-40%", - "41-50%", - "51-60%", - "61-70%", - "71-80%", - "81-90%", - "91-100%" - ], - "term": { - "description": "Classification to represent ER Positive results expressed as a percentage value.\n", - "termDef": { - "cde_id": 3128341, - "cde_version": 1, - "source": "caDSR", - "term": "ER Level Cell Percentage Category", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3128341&version=1.0" + "created_datetime": { + "oneOf": [ + { + "format": "date-time", + "type": "string" + }, + { + "type": "null" } - } - }, - "estrogen_receptor_result_ihc": { - "enum": [ - "Negative", - "Not Performed", - "Positive", - "Unknown" ], "term": { - "description": "Text term to represent the overall result of Estrogen Receptor (ER) testing.\n", - "termDef": { - "cde_id": 2957359, - "cde_version": 2, - "source": "caDSR", - "term": "Breast Carcinoma Estrogen Receptor Status", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2957359&version=2.0" - } + "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" } }, - "fev1_fvc_post_bronch_percent": { + "data_category": { "term": { - "description": "Percentage value to represent result of Forced Expiratory Volume in 1 second (FEV1) divided by the Forced Vital Capacity (FVC) post-bronchodilator.\n", - "termDef": { - "cde_id": 3302956, - "cde_version": 1, - "source": "caDSR", - "term": "Post Bronchodilator FEV1/FVC Percent Value", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3302956&version=1.0" - } + "description": "Broad categorization of the contents of the data file.\n" }, - "type": "number" + "type": "string" }, - "fev1_fvc_pre_bronch_percent": { + "data_format": { "term": { - "description": "Percentage value to represent result of Forced Expiratory Volume in 1 second (FEV1) divided by the Forced Vital Capacity (FVC) pre-bronchodilator.\n", - "termDef": { - "cde_id": 3302955, - "cde_version": 1, - "source": "caDSR", - "term": "Pre Bronchodilator FEV1/FVC Percent Value", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3302955&version=1.0" - } + "description": "Format of the data files.\n" }, - "type": "number" + "type": "string" }, - "fev1_ref_post_bronch_percent": { + "data_type": { "term": { - "description": "The percentage comparison to a normal value reference range of the volume of air that a patient can forcibly exhale from the lungs in one second post-bronchodilator.\n", - "termDef": { - "cde_id": 3302948, - "cde_version": 1, - "source": "caDSR", - "term": "Post Bronchodilator Lung Forced Expiratory Volume 1 Test Lab Percentage Value", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3302948&version=1.0" - } + "description": "Specific content type of the data file.\n" }, - "type": "number" + "type": "string" }, - "fev1_ref_pre_bronch_percent": { - "term": { - "description": "The percentage comparison to a normal value reference range of the volume of air that a patient can forcibly exhale from the lungs in one second pre-bronchodilator.\n", - "termDef": { - "cde_id": 3302947, - "cde_version": 1, - "source": "caDSR", - "term": "Pre Bronchodilator Lung Forced Expiratory Volume 1 Test Lab Percentage Value", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3302947&version=1.0" - } - }, - "type": "number" + "doc_url": { + "description": "The originating URL of the document.\n", + "type": "string" }, - "her2_erbb2_percent_positive_ihc": { + "error_type": { "enum": [ - "<1%", - "1-10%", - "11-20%", - "21-30%", - "31-40%", - "41-50%", - "51-60%", - "61-70%", - "71-80%", - "81-90%", - "91-100%" + "file_size", + "file_format", + "md5sum" ], "term": { - "description": "Classification to represent the number of positive HER2/ERBB2 cells in a specimen or sample.\n", - "termDef": { - "cde_id": 3086980, - "cde_version": 1, - "source": "caDSR", - "term": "HER2 ERBB Positive Finding Cell Percentage Category", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3086980&version=1.0" - } + "description": "Type of error for the data file object.\n" } }, - "her2_erbb2_result_fish": { - "enum": [ - "Negative", - "Not Performed", - "Positive", - "Unknown" - ], + "file_name": { "term": { - "description": "the type of outcome for HER2 as determined by an in situ hybridization (ISH) assay.\n", - "termDef": { - "cde_id": 2854089, - "cde_version": 1, - "source": "caDSR", - "term": "Laboratory Procedure HER2/neu in situ Hybridization Outcome Type", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2854089&version=1.0" - } - } + "description": "The name (or part of a name) of a file (of any type).\n" + }, + "type": "string" + }, + "file_size": { + "term": { + "description": "The size of the data file (object) in bytes.\n" + }, + "type": "integer" }, - "her2_erbb2_result_ihc": { + "file_state": { + "default": "registered", "enum": [ - "Negative", - "Not Performed", - "Positive", - "Unknown" + "registered", + "uploading", + "uploaded", + "validating", + "validated", + "submitted", + "processing", + "processed", + "released", + "error" ], "term": { - "description": "Text term to signify the result of the medical procedure that involves testing a sample of blood or tissue for HER2 by histochemical localization of immunoreactive substances using labeled antibodies as reagents.\n", - "termDef": { - "cde_id": 2957563, - "cde_version": 2, - "source": "caDSR", - "term": "Laboratory Procedure HER2/neu Immunohistochemistry Receptor Status", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2957563&version=2.0" - } + "description": "The current state of the data file object.\n" } }, "id": { @@ -3844,91 +3706,16 @@ }, "type": "string" }, - "ldh_level_at_diagnosis": { - "term": { - "description": "The 2 decimal place numeric laboratory value measured, assigned or computed related to the assessment of lactate dehydrogenase in a specimen.\n", - "termDef": { - "cde_id": 2798766, - "cde_version": 1, - "source": "caDSR", - "term": "Laboratory Procedure Lactate Dehydrogenase Result Integer::2 Decimal Place Value", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2798766&version=1.0" - } - }, - "type": "number" - }, - "ldh_normal_range_upper": { + "md5sum": { + "pattern": "^[a-f0-9]{32}$", "term": { - "description": "The top value of the range of statistical characteristics that are supposed to represent accepted standard, non-pathological pattern for lactate dehydrogenase (units not specified).\n", - "termDef": { - "cde_id": 2597015, - "cde_version": 1, - "source": "caDSR", - "term": "Laboratory Procedure Lactate Dehydrogenase Result Upper Limit of Normal Value", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2597015&version=1.0" - } + "description": "The 128-bit hash value expressed as a 32 digit hexadecimal number used as a file's digital fingerprint.\n" }, - "type": "number" - }, - "microsatellite_instability_abnormal": { - "enum": [ - "Yes", - "No", - "Unknown" - ], - "term": { - "description": "The yes/no indicator to signify the status of a tumor for microsatellite instability.\n", - "termDef": { - "cde_id": 3123142, - "cde_version": 1, - "source": "caDSR", - "term": "Microsatellite Instability Occurrence Indicator", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3123142&version=1.0" - } - } - }, - "progesterone_receptor_percent_positive_ihc": { - "enum": [ - "<1%", - "1-10%", - "11-20%", - "21-30%", - "31-40%", - "41-50%", - "51-60%", - "61-70%", - "71-80%", - "81-90%", - "91-100%" - ], - "term": { - "description": "Classification to represent Progesterone Receptor Positive results expressed as a percentage value.\n", - "termDef": { - "cde_id": 3128342, - "cde_version": 1, - "source": "caDSR", - "term": "Progesterone Receptor Level Cell Percentage Category", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3128342&version=1.0" - } - } + "type": "string" }, - "progesterone_receptor_result_ihc": { - "enum": [ - "Negative", - "Not Performed", - "Positive", - "Unknown" - ], - "term": { - "description": "Text term to represent the overall result of Progresterone Receptor (PR) testing.\n", - "termDef": { - "cde_id": 2957357, - "cde_version": 2, - "source": "caDSR", - "term": "Breast Carcinoma Progesterone Receptor Status", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2957357&version=2.0" - } - } + "object_id": { + "description": "The GUID of the object in the index service.", + "type": "string" }, "project_id": { "term": { @@ -3978,15 +3765,13 @@ } }, "submitter_id": { + "description": "A project-specific identifier for a node. This property is the calling card/nickname/alias for a unit of submission. It can be used in place of the UUID for identifying or recalling a node.\n", "type": [ - "string", - "null" + "string" ] }, "type": { - "enum": [ - "clinical_test" - ] + "type": "string" }, "updated_datetime": { "oneOf": [ @@ -4004,10 +3789,13 @@ } }, "required": [ - "biomarker_name", - "biomarker_result", - "biomarker_test_method", - "cases" + "type", + "submitter_id", + "file_name", + "file_size", + "md5sum", + "data_format", + "doc_url" ], "submittable": true, "systemProperties": [ @@ -4017,7 +3805,7 @@ "updated_datetime", "state" ], - "title": "Clinical Test", + "title": "Open Access Doc", "type": "object", "uniqueKeys": [ [ @@ -4030,79 +3818,116 @@ ], "validators": null }, - "core_metadata_collection": { + "program": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "category": "administrative", - "description": "Structured description of a collection of several dataset\n", - "id": "core_metadata_collection", - "links": [ - { - "backref": "core_metadata_collections", - "label": "data_from", - "multiplicity": "many_to_one", - "name": "projects", - "required": true, - "target_type": "project" + "description": "A broad framework of goals to be achieved. (NCIt C52647)\n", + "id": "program", + "links": [], + "program": "*", + "project": "*", + "properties": { + "dbgap_accession_number": { + "description": "The dbgap accession number provided for the program.", + "type": "string" + }, + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "systemAlias": "node_id", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "name": { + "description": "Full name/title of the program.", + "type": "string" + }, + "type": { + "type": "string" + } + }, + "required": [ + "name", + "dbgap_accession_number" + ], + "submittable": false, + "systemProperties": [ + "id" + ], + "title": "Program", + "type": "object", + "uniqueKeys": [ + [ + "id" + ], + [ + "name" + ] + ], + "validators": null + }, + "project": { + "$schema": "http://json-schema.org/draft-04/schema#", + "additionalProperties": false, + "category": "administrative", + "constraints": null, + "description": "Any specifically defined piece of work that is undertaken or attempted to meet a single requirement. (NCIt C47885)\n", + "id": "project", + "links": [ + { + "backref": "projects", + "label": "member_of", + "multiplicity": "many_to_one", + "name": "programs", + "required": true, + "target_type": "program" } ], - "namespace": "https://dcp.bionimbus.org/", "program": "*", "project": "*", "properties": { - "contributor": { - "description": "An entity responsible for making contributions to the resource. Examples of a Contributor include a person, an organization, or a service. Typically, the name of a Contributor should be used to indicate the entity.\n", + "administering_ic": { + "description": "The NIH Institute or Center (IC) to which the Center for Scientific Review (CSR) routes NIH grant applications for a funding decision. An IC may request to change this assignment if the application is more suited to another IC. Also referred to as primary assignment.\n", "type": "string" }, - "coverage": { - "description": "The spatial or temporal topic of the resource, the spatial applicability of the resource, or the jurisdiction under which the resource is relevant. Spatial topic and spatial applicability may be a named place or a location specified by its geographic coordinates. Temporal topic may be a named period, date, or date range. A jurisdiction may be a named administrative entity or a geographic place to which the resource applies. Recommended best practice is to use a controlled vocabulary such as the Thesaurus of Geographic Names [TGN] (http://www.getty.edu/research/tools/vocabulary/tgn/index.html). Where appropriate, named places or time periods can be used in preference to numeric identifiers such as sets of coordinates or date ranges.\n", + "availability_mechanism": { + "description": "Mechanism by which the project will be made available.", "type": "string" }, - "created_datetime": { - "oneOf": [ - { - "format": "date-time", - "type": "string" - }, - { - "type": "null" - } - ], - "term": { - "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" - } + "availability_type": { + "description": "Is the project open or restricted?", + "enum": [ + "Open", + "Restricted" + ] }, - "creator": { - "description": "An entity primarily responsible for making the resource. Examples of a Creator include a person, an organization, or a service. Typically, the name of a Creator should be used to indicate the entity.\n", + "code": { + "description": "Unique identifier for the project.", "type": "string" }, - "data_type": { - "description": "The nature or genre of the resource. Recommended best practice is to use a controlled vocabulary such as the DCMI Type Vocabulary [DCMITYPE]. To describe the file format, physical medium, or dimensions of the resource, use the Format element.\n", + "data_description": { + "description": "The description of the type of data found in the data set.\n", "type": "string" }, - "date": { - "oneOf": [ - { - "format": "date-time", - "type": "string" - }, - { - "type": "null" - } - ], - "term": { - "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" - } - }, - "description": { - "description": "An account of the resource. Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource.\n", + "date_collected": { + "description": "The date or date range in which the project data was collected.", "type": "string" }, - "format": { - "description": "The file format, physical medium, or dimensions of the resource. Examples of dimensions include size and duration. Recommended best practice is to use a controlled vocabulary such as the list of Internet Media Types [MIME] (http://www.iana.org/assignments/media-types/). \n", + "dbgap_accession_number": { + "description": "The dbgap accession number provided for the project.", "type": "string" }, "id": { + "description": "UUID for the project.", "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", "systemAlias": "node_id", "term": { @@ -4117,17 +3942,39 @@ }, "type": "string" }, - "language": { - "description": "A language of the resource. Recommended best practice is to use a controlled vocabulary such as RFC 4646 (http://www.ietf.org/rfc/rfc4646.txt).\n", + "institution": { + "description": "Public or Private entity, including Government Agencies.\n", + "items": { + "type": "string" + }, + "type": "array" + }, + "intended_release_date": { + "description": "Tracks a Project's intended release date.", + "format": "date-time", "type": "string" }, - "project_id": { - "term": { - "description": "Unique ID for any specific defined piece of work that is undertaken or attempted to meet a single requirement.\n" - }, + "investigator": { + "description": "A researcher(s) in a study who oversees multiple aspects of the study, such as concept development, protocol writing, protocol submission for IRB approval, participant recruitment, informed consent, data collection, analysis, interpretation and presentation.\n", "type": "string" }, - "projects": { + "investigator_affiliation": { + "description": "The investigator's affiliation with respect to a research institution.", + "type": "string" + }, + "investigator_name": { + "description": "Name of the principal investigator for the project.", + "type": "string" + }, + "location": { + "description": "Location of the partaking institution (Public or Private entity, including Government Agencies).\n", + "type": "string" + }, + "name": { + "description": "Display name/brief description for the project.", + "type": "string" + }, + "programs": { "anyOf": [ { "items": { @@ -4180,9397 +4027,120 @@ }, "type": "object" } - ] + ], + "description": "Indicates that the project is logically part of the indicated project.\n" }, - "publisher": { - "description": "An entity responsible for making the resource available. Examples of a Publisher include a person, an organization, or a service. Typically, the name of a Publisher should be used to indicate the entity.\n", + "project_title": { + "description": "Title of the NIH-funded project.\n", "type": "string" }, - "relation": { - "description": "A related resource. Recommended best practice is to identify the related resource by means of a string conforming to a formal identification system. \n", - "type": "string" + "releasable": { + "default": false, + "description": "A project can only be released by the user when `releasable` is true.\n", + "type": "boolean" }, - "rights": { - "description": "Information about rights held in and over the resource. Typically, rights information includes a statement about various property rights associated with the resource, including intellectual property rights.\n", + "released": { + "default": false, + "description": "To release a project is to tell the GDC to include all submitted\nentities in the next GDC index.\n", + "type": "boolean" + }, + "research_focus_area": { + "description": "Description of the Research Focus Area.\n", "type": "string" }, - "source": { - "description": "A related resource from which the described resource is derived. The described resource may be derived from the related resource in whole or in part. Recommended best practice is to identify the related resource by means of a string conforming to a formal identification system.\n", + "research_program": { + "description": "Name of the NIH-registered Research Program.\n", "type": "string" }, "state": { - "default": "validated", - "downloadable": [ - "uploaded", - "md5summed", - "validating", - "validated", - "error", - "invalid", - "released" - ], - "oneOf": [ - { - "enum": [ - "uploading", - "uploaded", - "md5summing", - "md5summed", - "validating", - "error", - "invalid", - "suppressed", - "redacted", - "live" - ] - }, - { - "enum": [ - "validated", - "submitted", - "released" - ] - } - ], - "public": [ - "live" - ], - "term": { - "description": "The current state of the object.\n" - } + "default": "open", + "description": "The possible states a project can be in. All but `open` are\nequivalent to some type of locked state.\n", + "enum": [ + "open", + "review", + "submitted", + "processing", + "closed", + "legacy" + ] }, - "subject": { - "description": "The topic of the resource. Typically, the subject will be represented using keywords, key phrases, or classification codes. Recommended best practice is to use a controlled vocabulary.\n", + "support_id": { + "description": "The ID of the source providing support/grant resources.", "type": "string" }, - "submitter_id": { - "description": "A project-specific identifier for a node. This property is the calling card/nickname/alias for a unit of submission. It can be used in place of the UUID for identifying or recalling a node.\n", - "type": [ - "string" - ] - }, - "title": { - "description": "A name given to the resource. Typically, a Title will be a name by which the resource is formally known.\n", + "support_source": { + "description": "The name of source providing support/grant resources.", "type": "string" }, "type": { "type": "string" }, - "updated_datetime": { - "oneOf": [ - { - "format": "date-time", - "type": "string" - }, - { - "type": "null" - } - ], - "term": { - "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" - } + "year_awarded": { + "description": "Year in which NIH awarded the funding project.\n", + "type": "integer" } }, "required": [ - "submitter_id", - "type", - "projects" + "code", + "name", + "programs", + "dbgap_accession_number" ], "submittable": true, "systemProperties": [ "id", - "project_id", "state", - "created_datetime", - "updated_datetime" + "released", + "releasable", + "intended_release_date" ], - "title": "Core Metadata Collection", + "title": "Project", "type": "object", "uniqueKeys": [ [ "id" ], [ - "project_id", - "submitter_id" - ] - ], - "validators": null - }, - "data_release": { - "$schema": "http://json-schema.org/draft-04/schema#", - "additionalProperties": false, - "category": "internal", - "description": "Internal node to store different data releases.\n", - "id": "data_release", - "links": [ - { - "backref": "data_releases", - "label": "describes", - "multiplicity": "many_to_one", - "name": "roots", - "required": true, - "target_type": "root" - } - ], - "namespace": "http://gdc.nci.nih.gov", - "properties": { - "created_datetime": { - "oneOf": [ - { - "format": "date-time", - "type": "string" - }, - { - "type": "null" - } - ], - "term": { - "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" - } - }, - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "systemAlias": "node_id", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "major_version": { - "description": "The number identifying the major version.\n", - "type": "integer" - }, - "minor_version": { - "description": "The number identifying the minor version.\n", - "type": "integer" - }, - "release_date": { - "oneOf": [ - { - "format": "date-time", - "type": "string" - }, - { - "type": "null" - } - ], - "term": { - "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" - } - }, - "released": { - "default": false, - "description": "Indicates if it is the current release.\n", - "type": "boolean" - }, - "roots": { - "anyOf": [ - { - "items": { - "additionalProperties": true, - "maxItems": 1, - "minItems": 1, - "properties": { - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "submitter_id": { - "type": "string" - } - }, - "type": "object" - }, - "type": "array" - }, - { - "additionalProperties": true, - "properties": { - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "submitter_id": { - "type": "string" - } - }, - "type": "object" - } - ] - }, - "type": { - "enum": [ - "data_release" - ] - }, - "updated_datetime": { - "oneOf": [ - { - "format": "date-time", - "type": "string" - }, - { - "type": "null" - } - ], - "term": { - "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" - } - } - }, - "required": [ - "major_version", - "minor_version" - ], - "submittable": false, - "systemProperties": [ - "id", - "created_datetime", - "updated_datetime" - ], - "title": "Data Release", - "type": "object", - "uniqueKeys": [ - [ - "id" - ] - ], - "validators": null - }, - "demographic": { - "$schema": "http://json-schema.org/draft-04/schema#", - "additionalProperties": false, - "category": "clinical", - "description": "Data for the characterization of the patient by means of segementing the population (e.g., characterization by age, sex, or race).\n", - "id": "demographic", - "links": [ - { - "backref": "demographics", - "label": "describes", - "multiplicity": "one_to_one", - "name": "cases", - "required": true, - "target_type": "case" - } - ], - "namespace": "http://gdc.nci.nih.gov", - "preferred": [ - "year_of_death" - ], - "program": "*", - "project": "*", - "properties": { - "cases": { - "anyOf": [ - { - "items": { - "additionalProperties": true, - "maxItems": 1, - "minItems": 1, - "properties": { - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "submitter_id": { - "type": "string" - } - }, - "type": "object" - }, - "type": "array" - }, - { - "additionalProperties": true, - "properties": { - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "submitter_id": { - "type": "string" - } - }, - "type": "object" - } - ] - }, - "created_datetime": { - "oneOf": [ - { - "format": "date-time", - "type": "string" - }, - { - "type": "null" - } - ], - "term": { - "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" - } - }, - "ethnicity": { - "enum": [ - "hispanic or latino", - "not hispanic or latino", - "Unknown", - "not reported", - "not allowed to collect" - ], - "term": { - "description": "An individual's self-described social and cultural grouping, specifically whether an individual describes themselves as Hispanic or Latino. The provided values are based on the categories defined by the U.S. Office of Management and Business and used by the U.S. Census Bureau.\n", - "termDef": { - "cde_id": 2192217, - "cde_version": 2, - "source": "caDSR", - "term": "Ethnic Group Category Text", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2192217&version=2.0" - } - } - }, - "gender": { - "enum": [ - "female", - "male", - "unknown", - "unspecified", - "not reported" - ], - "term": { - "description": "Text designations that identify gender. Gender is described as the assemblage of properties that distinguish people on the basis of their societal roles. [Explanatory Comment 1: Identification of gender is based upon self-report and may come from a form, questionnaire, interview, etc.]\n", - "termDef": { - "cde_id": 2200604, - "cde_version": 3, - "source": "caDSR", - "term": "Person Gender Text Type", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2200604&version=3.0" - } - } - }, - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "systemAlias": "node_id", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "project_id": { - "term": { - "description": "Unique ID for any specific defined piece of work that is undertaken or attempted to meet a single requirement.\n" - }, - "type": "string" - }, - "race": { - "enum": [ - "white", - "american indian or alaska native", - "black or african american", - "asian", - "native hawaiian or other pacific islander", - "other", - "Unknown", - "not reported", - "not allowed to collect" - ], - "term": { - "description": "An arbitrary classification of a taxonomic group that is a division of a species. It usually arises as a consequence of geographical isolation within a species and is characterized by shared heredity, physical attributes and behavior, and in the case of humans, by common history, nationality, or geographic distribution. The provided values are based on the categories defined by the U.S. Office of Management and Business and used by the U.S. Census Bureau.\n", - "termDef": { - "cde_id": 2192199, - "cde_version": 1, - "source": "caDSR", - "term": "Race Category Text", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2192199&version=1.0" - } - } - }, - "state": { - "default": "validated", - "downloadable": [ - "uploaded", - "md5summed", - "validating", - "validated", - "error", - "invalid", - "released" - ], - "oneOf": [ - { - "enum": [ - "uploading", - "uploaded", - "md5summing", - "md5summed", - "validating", - "error", - "invalid", - "suppressed", - "redacted", - "live" - ] - }, - { - "enum": [ - "validated", - "submitted", - "released" - ] - } - ], - "public": [ - "live" - ], - "term": { - "description": "The current state of the object.\n" - } - }, - "submitter_id": { - "type": [ - "string", - "null" - ] - }, - "type": { - "type": "string" - }, - "updated_datetime": { - "oneOf": [ - { - "format": "date-time", - "type": "string" - }, - { - "type": "null" - } - ], - "term": { - "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" - } - }, - "year_of_birth": { - "term": { - "description": "Numeric value to represent the calendar year in which an individual was born.\n", - "termDef": { - "cde_id": 2896954, - "cde_version": 1, - "source": "caDSR", - "term": "Year Birth Date Number", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2896954&version=1.0" - } - }, - "type": [ - "number", - "null" - ] - }, - "year_of_death": { - "term": { - "description": "Numeric value to represent the year of the death of an individual.\n", - "termDef": { - "cde_id": 2897030, - "cde_version": 1, - "source": "caDSR", - "term": "Year Death Number", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2897030&version=1.0" - } - }, - "type": "number" - } - }, - "required": [ - "submitter_id", - "cases" - ], - "submittable": true, - "systemProperties": [ - "id", - "project_id", - "state", - "created_datetime", - "updated_datetime" - ], - "title": "Demographic", - "type": "object", - "uniqueKeys": [ - [ - "id" - ], - [ - "project_id", - "submitter_id" - ] - ], - "validators": null - }, - "diagnosis": { - "$schema": "http://json-schema.org/draft-04/schema#", - "additionalProperties": false, - "category": "clinical", - "description": "Data from the investigation, analysis and recognition of the presence and nature of disease, condition, or injury from expressed signs and symptoms; also, the scientific determination of any kind; the concise results of such an investigation.\n", - "id": "diagnosis", - "links": [ - { - "backref": "diagnoses", - "label": "describes", - "multiplicity": "many_to_one", - "name": "cases", - "required": true, - "target_type": "case" - } - ], - "namespace": "http://gdc.nci.nih.gov", - "preferred": [ - "days_to_birth", - "site_of_resection_or_biopsy" - ], - "program": "*", - "project": "*", - "properties": { - "age_at_diagnosis": { - "maximum": 32872, - "minimum": 0, - "term": { - "description": "Age at the time of diagnosis expressed in number of days since birth.\n", - "termDef": { - "cde_id": 3225640, - "cde_version": 2, - "source": "caDSR", - "term": "Patient Diagnosis Age Day Value", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3225640&version=2.0" - } - }, - "type": [ - "number", - "null" - ] - }, - "ajcc_clinical_m": { - "enum": [ - "M0", - "M1", - "M1a", - "M1b", - "M1c", - "MX", - "cM0 (i+)", - "Unknown", - "Not Reported", - "Not Allowed To Collect" - ], - "term": { - "description": "Extent of the distant metastasis for the cancer based on evidence obtained from clinical assessment parameters determined prior to treatment.\n", - "termDef": { - "cde_id": 3440331, - "cde_version": 1, - "source": "caDSR", - "term": "Neoplasm American Joint Committee on Cancer Clinical Distant Metastasis M Stage", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3440331&version=1.0" - } - } - }, - "ajcc_clinical_n": { - "enum": [ - "N0", - "N0 (i+)", - "N0 (i-)", - "N0 (mol+)", - "N0 (mol-)", - "N1", - "N1a", - "N1b", - "N1bI", - "N1bII", - "N1bIII", - "N1bIV", - "N1c", - "N1mi", - "N2", - "N2a", - "N2b", - "N2c", - "N3", - "N3a", - "N3b", - "N3c", - "N4", - "NX", - "Unknown", - "Not Reported", - "Not Allowed To Collect" - ], - "term": { - "description": "Extent of the regional lymph node involvement for the cancer based on evidence obtained from clinical assessment parameters determined prior to treatment.\n", - "termDef": { - "cde_id": 3440330, - "cde_version": 1, - "source": "caDSR", - "term": "Neoplasm American Joint Committee on Cancer Clinical Regional Lymph Node N Stage", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3440330&version=1.0" - } - } - }, - "ajcc_clinical_stage": { - "enum": [ - "Stage 0", - "Stage 0a", - "Stage 0is", - "Stage I", - "Stage IA", - "Stage IA1", - "Stage IA2", - "Stage IB", - "Stage IB Cervix", - "Stage IB1", - "Stage IB2", - "Stage II", - "Stage II Cervix", - "Stage IIA", - "Stage IIA Cervix", - "Stage IIB", - "Stage IIC", - "Stage III", - "Stage IIIA", - "Stage IIIB", - "Stage IIIC", - "Stage IS", - "Stage IV", - "Stage IVA", - "Stage IVB", - "Stage IVC", - "Stage Tis", - "Stage X", - "Unknown", - "Not Reported", - "Not Allowed To Collect" - ], - "term": { - "description": "Stage group determined from clinical information on the tumor (T), regional node (N) and metastases (M) and by grouping cases with similar prognosis for cancer.\n", - "termDef": { - "cde_id": 3440332, - "cde_version": 1, - "source": "caDSR", - "term": "Neoplasm American Joint Committee on Cancer Clinical Group Stage", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3440332&version=1.0" - } - } - }, - "ajcc_clinical_t": { - "enum": [ - "T0", - "T1", - "T1a", - "T1a1", - "T1a2", - "T1b", - "T1b1", - "T1b2", - "T1c", - "T1mi", - "T2", - "T2a", - "T2a1", - "T2a2", - "T2b", - "T2c", - "T2d", - "T3", - "T3a", - "T3b", - "T3c", - "T3d", - "T4", - "T4a", - "T4b", - "T4c", - "T4d", - "T4e", - "TX", - "Ta", - "Tis", - "Tis (DCIS)", - "Tis (LCIS)", - "Tis (Paget's)", - "Unknown", - "Not Reported", - "Not Allowed To Collect" - ], - "term": { - "description": "Extent of the primary cancer based on evidence obtained from clinical assessment parameters determined prior to treatment.\n", - "termDef": { - "cde_id": 3440328, - "cde_version": 1, - "source": "caDSR", - "term": "Neoplasm American Joint Committee on Cancer Clinical Primary Tumor T Stage", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3440328&version=1.0" - } - } - }, - "ajcc_pathologic_m": { - "enum": [ - "M0", - "M1", - "M1a", - "M1b", - "M1c", - "M2", - "MX", - "cM0 (i+)", - "Unknown", - "Not Reported", - "Not Allowed To Collect" - ], - "term": { - "description": "Code to represent the defined absence or presence of distant spread or metastases (M) to locations via vascular channels or lymphatics beyond the regional lymph nodes, using criteria established by the American Joint Committee on Cancer (AJCC).\n", - "termDef": { - "cde_id": 3045439, - "cde_version": 1, - "source": "caDSR", - "term": "American Joint Committee on Cancer Metastasis Stage Code", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3045439&version=1.0" - } - } - }, - "ajcc_pathologic_n": { - "enum": [ - "N0", - "N0 (i+)", - "N0 (i-)", - "N0 (mol+)", - "N0 (mol-)", - "N1", - "N1a", - "N1b", - "N1bI", - "N1bII", - "N1bIII", - "N1bIV", - "N1c", - "N1mi", - "N2", - "N2a", - "N2b", - "N2c", - "N3", - "N3a", - "N3b", - "N3c", - "N4", - "NX", - "Unknown", - "Not Reported", - "Not Allowed To Collect" - ], - "term": { - "description": "The codes that represent the stage of cancer based on the nodes present (N stage) according to criteria based on multiple editions of the AJCC's Cancer Staging Manual.\n", - "termDef": { - "cde_id": 3203106, - "cde_version": 1, - "source": "caDSR", - "term": "Neoplasm Disease Lymph Node Stage American Joint Committee on Cancer Code", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3203106&version=1.0" - } - } - }, - "ajcc_pathologic_stage": { - "enum": [ - "Stage 0", - "Stage 0a", - "Stage 0is", - "Stage I", - "Stage IA", - "Stage IA1", - "Stage IA2", - "Stage IB", - "Stage IB1", - "Stage IB2", - "Stage IC", - "Stage II", - "Stage IIA", - "Stage IIA1", - "Stage IIA2", - "Stage IIB", - "Stage IIC", - "Stage III", - "Stage IIIA", - "Stage IIIB", - "Stage IIIC", - "Stage IV", - "Stage IVA", - "Stage IVB", - "Stage IVC", - "Stage Tis", - "Stage X" - ], - "term": { - "description": "The extent of a cancer, especially whether the disease has spread from the original site to other parts of the body based on AJCC staging criteria.\n", - "termDef": { - "cde_id": 3203222, - "cde_version": 1, - "source": "caDSR", - "term": "Neoplasm Disease Stage American Joint Committee on Cancer Code", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3203222&version=1.0" - } - } - }, - "ajcc_pathologic_t": { - "enum": [ - "T0", - "T1", - "T1a", - "T1a1", - "T1a2", - "T1b", - "T1b1", - "T1b2", - "T1c", - "T1mi", - "T2", - "T2a", - "T2a1", - "T2a2", - "T2b", - "T2c", - "T2d", - "T3", - "T3a", - "T3b", - "T3c", - "T3d", - "T4", - "T4a", - "T4b", - "T4c", - "T4d", - "T4e", - "TX", - "Ta", - "Tis", - "Tis (DCIS)", - "Tis (LCIS)", - "Tis (Paget's)", - "Unknown", - "Not Reported", - "Not Allowed To Collect" - ], - "term": { - "description": "Code of pathological T (primary tumor) to define the size or contiguous extension of the primary tumor (T), using staging criteria from the American Joint Committee on Cancer (AJCC).\n", - "termDef": { - "cde_id": 3045435, - "cde_version": 1, - "source": "caDSR", - "term": "American Joint Committee on Cancer Tumor Stage Code", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3045435&version=1.0" - } - } - }, - "ann_arbor_b_symptoms": { - "enum": [ - "Yes", - "No", - "Unknown", - "Not Reported", - "Not Allowed To Collect" - ], - "term": { - "description": "Text term to signify whether lymphoma B-symptoms are present as noted in the patient's medical record.\n", - "termDef": { - "cde_id": 2902402, - "cde_version": 1, - "source": "caDSR", - "term": "Lymphoma B-Symptoms Medical Record Documented Indicator", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2902402&version=1.0" - } - } - }, - "ann_arbor_clinical_stage": { - "enum": [ - "Stage I", - "Stage II", - "Stage III", - "Stage IV" - ], - "term": { - "description": "The classification of the clinically confirmed anatomic disease extent of lymphoma (Hodgkin's and Non-Hodgkins) based on the Ann Arbor Staging System.\n", - "termDef": { - "cde_id": null, - "cde_version": null, - "source": null, - "term": "Ann Arbor Clinical Stage", - "term_url": null - } - } - }, - "ann_arbor_extranodal_involvement": { - "enum": [ - "Yes", - "No", - "Unknown", - "Not Reported", - "Not Allowed To Collect" - ], - "term": { - "description": "Indicator that identifies whether a patient with malignant lymphoma has lymphomatous involvement of an extranodal site.\n", - "termDef": { - "cde_id": 3364582, - "cde_version": 1, - "source": "caDSR", - "term": "Lymphomatous Extranodal Site Involvement Indicator", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3364582&version=1.0" - } - } - }, - "ann_arbor_pathologic_stage": { - "enum": [ - "Stage I", - "Stage II", - "Stage III", - "Stage IV" - ], - "term": { - "description": "The classification of the pathologically confirmed anatomic disease extent of lymphoma (Hodgkin's and Non-Hodgkins) based on the Ann Arbor Staging System.\n", - "termDef": { - "cde_id": null, - "cde_version": null, - "source": null, - "term": "Ann Arbor Pathologic Stage", - "term_url": null - } - } - }, - "burkitt_lymphoma_clinical_variant": { - "enum": [ - "Endemic", - "Immunodeficiency-associated, adult", - "Immunodeficiency-associated, pediatric", - "Sporadic, adult", - "Sporadic, pediatric", - "Unknown", - "Not Reported", - "Not Allowed To Collect" - ], - "term": { - "description": "Burkitt's lymphoma categorization based on clinical features that differ from other forms of the same disease.\n", - "termDef": { - "cde_id": 3770421, - "cde_version": 1, - "source": "caDSR", - "term": "Burkitt Lymphoma Clinical Variant Type", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3770421&version=1.0" - } - } - }, - "cases": { - "anyOf": [ - { - "items": { - "additionalProperties": true, - "maxItems": 1, - "minItems": 1, - "properties": { - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "submitter_id": { - "type": "string" - } - }, - "type": "object" - }, - "type": "array" - }, - { - "additionalProperties": true, - "properties": { - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "submitter_id": { - "type": "string" - } - }, - "type": "object" - } - ] - }, - "cause_of_death": { - "enum": [ - "Cancer Related", - "Not Cancer Related", - "Unknown" - ], - "term": { - "description": "Text term to identify the cause of death for a patient.\n", - "termDef": { - "cde_id": 2554674, - "cde_version": 3, - "source": "caDSR", - "term": "Patient Death Reason", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2554674&version=3.0" - } - } - }, - "circumferential_resection_margin": { - "term": { - "description": "A value in millimeters indicating the measured length between a malignant lesion of the colon or rectum and the nearest radial (or circumferential) border of tissue removed during cancer surgery.\n", - "termDef": { - "cde_id": 64202, - "cde_version": 3, - "source": "caDSR", - "term": "Colorectal Surgical Margin Circumferential Distance Measurement", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=64202&version=3.0" - } - }, - "type": "number" - }, - "classification_of_tumor": { - "enum": [ - "primary", - "metastasis", - "recurrence", - "other", - "Unknown", - "not reported", - "Not Allowed To Collect" - ], - "term": { - "description": "Text that describes the kind of disease present in the tumor specimen as related to a specific timepoint.\n", - "termDef": { - "cde_id": 3288124, - "cde_version": 1, - "source": "caDSR", - "term": "Tumor Tissue Disease Description Type", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3288124&version=1.0" - } - } - }, - "colon_polyps_history": { - "enum": [ - "Yes", - "No", - "Unknown", - "Not Reported", - "Not Allowed To Collect" - ], - "term": { - "description": "Yes/No indicator to describe if the subject had a previous history of colon polyps as noted in the history/physical or previous endoscopic report (s).\n", - "termDef": { - "cde_id": 3107197, - "cde_version": 1, - "source": "caDSR", - "term": "Colon Carcinoma Polyp Occurrence Indicator", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3107197&version=1.0" - } - } - }, - "created_datetime": { - "oneOf": [ - { - "format": "date-time", - "type": "string" - }, - { - "type": "null" - } - ], - "term": { - "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" - } - }, - "days_to_birth": { - "maximum": 0, - "minimum": -32872, - "term": { - "description": "Time interval from a person's date of birth to the date of initial pathologic diagnosis, represented as a calculated negative number of days.\n", - "termDef": { - "cde_id": 3008233, - "cde_version": 1, - "source": "caDSR", - "term": "Person Birth Date Less Initial Pathologic Diagnosis Date Calculated Day Value", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3008233&version=1.0" - } - }, - "type": [ - "number", - "null" - ] - }, - "days_to_death": { - "maximum": 32872, - "minimum": 0, - "term": { - "description": "Time interval from a person's date of death to the date of initial pathologic diagnosis, represented as a calculated number of days.\n", - "termDef": { - "cde_id": 3165475, - "cde_version": 1, - "source": "caDSR", - "term": "Death Less Initial Pathologic Diagnosis Date Calculated Day Value", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3165475&version=1.0" - } - }, - "type": "number" - }, - "days_to_hiv_diagnosis": { - "term": { - "description": "Time interval from the date of the initial pathologic diagnosis to the date of human immunodeficiency diagnosis, represented as a calculated number of days.\n", - "termDef": { - "cde_id": 4618491, - "cde_version": 1, - "source": "caDSR", - "term": "Human Immunodeficiency Virus Diagnosis Subtract Initial Pathologic Diagnosis Time Duration Day Calculation Value", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=4618491&version=1.0" - } - }, - "type": [ - "number", - "null" - ] - }, - "days_to_last_follow_up": { - "term": { - "description": "Time interval from the date of last follow up to the date of initial pathologic diagnosis, represented as a calculated number of days.\n", - "termDef": { - "cde_id": 3008273, - "cde_version": 1, - "source": "caDSR", - "term": "Last Communication Contact Less Initial Pathologic Diagnosis Date Calculated Day Value", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3008273&version=1.0" - } - }, - "type": [ - "number", - "null" - ] - }, - "days_to_last_known_disease_status": { - "term": { - "description": "Time interval from the date of last follow up to the date of initial pathologic diagnosis, represented as a calculated number of days.\n", - "termDef": { - "cde_id": 3008273, - "cde_version": 1, - "source": "caDSR", - "term": "Last Communication Contact Less Initial Pathologic Diagnosis Date Calculated Day Value", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3008273&version=1.0" - } - }, - "type": [ - "number", - "null" - ] - }, - "days_to_new_event": { - "term": { - "description": "Time interval from the date of new tumor event including progression, recurrence and new primary malignacies to the date of initial pathologic diagnosis, represented as a calculated number of days.\n", - "termDef": { - "cde_id": 3392464, - "cde_version": 1, - "source": "caDSR", - "term": "New Tumor Event Less Initial Pathologic Diagnosis Date Calculated Day Value", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3392464&version=1.0" - } - }, - "type": [ - "number", - "null" - ] - }, - "days_to_recurrence": { - "term": { - "description": "Time interval from the date of new tumor event including progression, recurrence and new primary malignancies to the date of initial pathologic diagnosis, represented as a calculated number of days.\n", - "termDef": { - "cde_id": 3392464, - "cde_version": 1, - "source": "caDSR", - "term": "New Tumor Event Less Initial Pathologic Diagnosis Date Calculated Day Value", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3392464&version=1.0" - } - }, - "type": [ - "number", - "null" - ] - }, - "figo_stage": { - "enum": [ - "Stage 0", - "Stage I", - "Stage IA", - "Stage IA1", - "Stage IA2", - "Stage IB", - "Stage IB1", - "Stage IB2", - "Stage IC", - "Stage II", - "Stage IIA", - "Stage IIA1", - "Stage IIA2", - "Stage IIB", - "Stage III", - "Stage IIIA", - "Stage IIIB", - "Stage IIIC", - "Stage IIIC1", - "Stage IIIC2", - "Stage IV", - "Stage IVA", - "Stage IVB", - "Unknown", - "Not Reported", - "Not Allowed To Collect" - ], - "term": { - "description": "The extent of a cervical or endometrial cancer within the body, especially whether the disease has spread from the original site to other parts of the body, as described by the International Federation of Gynecology and Obstetrics (FIGO) stages.\n", - "termDef": { - "cde_id": 3225684, - "cde_version": 1, - "source": "caDSR", - "term": "Gynecologic Tumor Grouping Cervical Endometrial FIGO 2009 Stage", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3225684&version=1.0" - } - } - }, - "hiv_positive": { - "enum": [ - "Yes", - "No", - "Unknown" - ], - "term": { - "description": "Text term to signify whether a physician has diagnosed HIV infection in a patient.\n", - "termDef": { - "cde_id": 4030799, - "cde_version": 1, - "source": "caDSR", - "term": "Physician Diagnosed HIV Infection Personal Medical History Yes No Not Applicable Indicator", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=4030799&version=1.0" - } - } - }, - "hpv_positive_type": { - "enum": [ - "HPV 16", - "HPV 18", - "Other HPV type(s)", - "Unknown" - ], - "term": { - "description": "Text classification to represent the strain or type of human papillomavirus identified in an individual.\n", - "termDef": { - "cde_id": 2922649, - "cde_version": 1, - "source": "caDSR", - "term": "Human Papillomavirus Type", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2922649&version=1.0" - } - } - }, - "hpv_status": { - "enum": [ - "Negative", - "Positive", - "Unknown" - ], - "term": { - "description": "The findings of the oncogenic HPV.\n", - "termDef": { - "cde_id": 2230033, - "cde_version": 1, - "source": "caDSR", - "term": "Oncogenic Human Papillomavirus Result Type", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2230033&version=1.0" - } - } - }, - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "systemAlias": "node_id", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "last_known_disease_status": { - "enum": [ - "Distant met recurrence/progression", - "Loco-regional recurrence/progression", - "Biochemical evidence of disease without structural correlate", - "Tumor free", - "Unknown tumor status", - "With tumor", - "not reported", - "Not Allowed To Collect" - ], - "term": { - "description": "Text term that describes the last known state or condition of an individual's neoplasm.\n", - "termDef": { - "cde_id": 5424231, - "cde_version": 1, - "source": "caDSR", - "term": "Person Last Known Neoplasm Status", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2759550&version=1.0" - } - } - }, - "laterality": { - "enum": [ - "Bilateral", - "Left", - "Right", - "Unknown" - ], - "term": { - "description": "For tumors in paired organs, designates the side on which the cancer originates.\n", - "termDef": { - "cde_id": 827, - "cde_version": 3, - "source": "caDSR", - "term": "Primary Tumor Laterality", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=827&version=3.0" - } - } - }, - "ldh_level_at_diagnosis": { - "term": { - "description": "The 2 decimal place numeric laboratory value measured, assigned or computed related to the assessment of lactate dehydrogenase in a specimen.\n", - "termDef": { - "cde_id": 2798766, - "cde_version": 1, - "source": "caDSR", - "term": "Laboratory Procedure Lactate Dehydrogenase Result Integer::2 Decimal Place Value", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2798766&version=1.0" - } - }, - "type": [ - "number", - "null" - ] - }, - "ldh_normal_range_upper": { - "term": { - "description": "The top value of the range of statistical characteristics that are supposed to represent accepted standard, non-pathological pattern for lactate dehydrogenase (units not specified).\n", - "termDef": { - "cde_id": 2597015, - "cde_version": 1, - "source": "caDSR", - "term": "Laboratory Procedure Lactate Dehydrogenase Result Upper Limit of Normal Value", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2597015&version=1.0" - } - }, - "type": [ - "number", - "null" - ] - }, - "lymph_nodes_positive": { - "term": { - "description": "The number of lymph nodes involved with disease as determined by pathologic examination.\n", - "termDef": { - "cde_id": 89, - "cde_version": 3, - "source": "caDSR", - "term": "Lymph Node(s) Positive Number", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=89&version=3.0" - } - }, - "type": "integer" - }, - "lymphatic_invasion_present": { - "enum": [ - "Yes", - "No", - "Unknown" - ], - "term": { - "description": "A yes/no indicator to ask if small or thin-walled vessel invasion is present, indicating lymphatic involvement\n", - "termDef": { - "cde_id": 64171, - "cde_version": 3, - "source": "caDSR", - "term": "Lymphatic/Small vessel Invasion Ind", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=64171&version=3.0" - } - } - }, - "method_of_diagnosis": { - "enum": [ - "Autopsy", - "Biopsy", - "Blood Draw", - "Bone Marrow Aspirate", - "Core Biopsy", - "Cytology", - "Debulking", - "Diagnostic Imaging", - "Excisional Biopsy", - "Fine Needle Aspiration", - "Incisional Biopsy", - "Laparoscopy", - "Laparotomy", - "Other", - "Surgical Resection", - "Ultrasound Guided Biopsy", - "Unknown", - "Not Reported", - "Not Allowed To Collect" - ], - "term": { - "description": "The method used to initially the patient's diagnosis.\n", - "termDef": { - "cde_id": null, - "cde_version": null, - "source": null, - "term": "Method of Diagnosis", - "term_url": null - } - } - }, - "morphology": { - "term": { - "description": "The third edition of the International Classification of Diseases for Oncology, published in 2000 used principally in tumor and cancer registries for coding the site (topography) and the histology (morphology) of neoplasms. The study of the structure of the cells and their arrangement to constitute tissues and, finally, the association among these to form organs. In pathology, the microscopic process of identifying normal and abnormal morphologic characteristics in tissues, by employing various cytochemical and immunocytochemical stains. A system of numbered categories for representation of data.\n", - "termDef": { - "cde_id": 3226275, - "cde_version": 1, - "source": "caDSR", - "term": "International Classification of Diseases for Oncology, Third Edition ICD-O-3 Histology Code", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3226275&version=1.0" - } - }, - "type": "string" - }, - "new_event_anatomic_site": { - "enum": [ - "Abdomen", - "Adrenal", - "Anus", - "Appendix", - "Ascites/Peritoneum", - "Axillary lymph nodes", - "Bladder", - "Bone", - "Bone Marrow", - "Brain", - "Breast", - "Cervical lymph nodes", - "Cervix", - "Colon", - "Conjunctiva", - "Contralateral Pleura", - "Distant Metastasis", - "Epididymis", - "Epidural", - "Epitrochlear lymph nodes", - "Esophagus", - "Extremities", - "Femoral lymph nodes", - "Gallbladder", - "Gastrointestinal/Abdominal", - "Head & Neck", - "Heart", - "Hilar lymph nodes", - "Hypopharynx", - "Iliac Lymph Node", - "Iliac-common lymph nodes", - "Iliac-external lymph nodes", - "Inguinal lymph nodes", - "Intraocular", - "Ipsilateral Chest Cavity", - "Ipsilateral Chest Wall", - "Ipsilateral Lymph Nodes", - "Ipsilateral Pleura", - "Kidney", - "Large Intestine", - "Larynx", - "Leptomeninges", - "Liver", - "Lung", - "Lymph Node Only", - "Lymph Node(s)", - "Mandible", - "Maxilla", - "Mediastinal Soft Tissue", - "Mediastinal lymph nodes", - "Mediastinal/Intra-thoracic", - "Mesenteric lymph nodes", - "Nasal Soft Tissue", - "Nasopharynx", - "No Known Extranodal Involvement", - "Non-regional / Distant Lymph Nodes", - "Not Applicable", - "Occipital lymph nodes", - "Oral Cavity", - "Oropharynx", - "Other", - "Other Extranodal Site", - "Other, specify", - "Ovary", - "Pancreas", - "Paraaortic lymph nodes", - "Parotid Gland", - "Parotid lymph nodes", - "Pelvis", - "Peri-orbital Soft Tissue", - "Pericardium", - "Perihilar Lymph Node", - "Peripheral Blood", - "Peritoneal Surfaces", - "Pleura/Pleural Effusion", - "Popliteal lymph nodes", - "Prostate", - "Pulmonary", - "Rectum", - "Renal Pelvis", - "Retroperitoneal lymph nodes", - "Retroperitoneum", - "Salivary Gland", - "Sinus", - "Skin", - "Small Intestine", - "Soft Tissue", - "Splenic lymph nodes", - "Stomach", - "Submandibular lymph nodes", - "Supraclavicular lymph nodes", - "Testes", - "Thyroid", - "Trunk", - "Tumor Bed", - "Ureter", - "Urethra", - "Uterus", - "Vulva", - "Unknown", - "Not Reported", - "Not Allowed To Collect" - ], - "term": { - "description": "Text term to specify the anatomic location of the return of tumor after treatment.\n", - "termDef": { - "cde_id": 3108271, - "cde_version": 2, - "source": "caDSR", - "term": "New Neoplasm Event Occurrence Anatomic Site", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3108271&version=2.0" - } - } - }, - "new_event_type": { - "enum": [ - "Biochemical Evidence of Disease", - "Both Locoregional and Distant Metastasis", - "Distant Metastasis", - "Extrahepatic Recurrence", - "Intrahepatic Recurrence", - "Intrapleural Progression", - "Locoregional (Urothelial tumor event)", - "Locoregional Disease", - "Locoregional Recurrence", - "Metachronous Testicular Tumor", - "Metastatic", - "New Primary Tumor", - "New primary Melanoma", - "No New Tumor Event", - "Not Applicable", - "Progression of Disease", - "Recurrence", - "Regional Lymph Node", - "Unknown", - "Not Reported", - "Not Allowed To Collect" - ], - "term": { - "description": "Text term to identify a new tumor event.\n", - "termDef": { - "cde_id": 3119721, - "cde_version": 1, - "source": "caDSR", - "term": "New Neoplasm Event Type", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3119721&version=1.0" - } - } - }, - "perineural_invasion_present": { - "enum": [ - "Yes", - "No", - "Unknown" - ], - "term": { - "description": "a yes/no indicator to ask if perineural invasion or infiltration of tumor or cancer is present.\n", - "termDef": { - "cde_id": 64181, - "cde_version": 3, - "source": "caDSR", - "term": "Tumor Perineural Invasion Ind", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=64181&version=3.0" - } - } - }, - "primary_diagnosis": { - "term": { - "description": "Text term for the structural pattern of cancer cells used to define a microscopic diagnosis.\n", - "termDef": { - "cde_id": 3081934, - "cde_version": 3, - "source": "caDSR", - "term": "Neoplasm Histologic Type Name", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3081934&version=3.0" - } - }, - "type": "string" - }, - "prior_malignancy": { - "enum": [ - "yes", - "no", - "unknown", - "not reported", - "Not Allowed To Collect" - ], - "term": { - "description": "Text term to describe the patient's history of prior cancer diagnosis and the spatial location of any previous cancer occurrence.\n", - "termDef": { - "cde_id": 3382736, - "cde_version": 2, - "source": "caDSR", - "term": "Prior Cancer Diagnosis Occurrence Description Text", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3382736&version=2.0" - } - } - }, - "prior_treatment": { - "enum": [ - "Yes", - "No", - "Unknown", - "Not Reported", - "Not Allowed To Collect" - ], - "term": { - "description": "A yes/no/unknown/not applicable indicator related to the administration of therapeutic agents received before the body specimen was collected.\n", - "termDef": { - "cde_id": 4231463, - "cde_version": 1, - "source": "caDSR", - "term": "Therapeutic Procedure Prior Specimen Collection Administered Yes No Unknown Not Applicable Indicator", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=4231463&version=1.0" - } - } - }, - "progression_or_recurrence": { - "enum": [ - "yes", - "no", - "unknown", - "not reported", - "Not Allowed To Collect" - ], - "term": { - "description": "Yes/No/Unknown indicator to identify whether a patient has had a new tumor event after initial treatment.\n", - "termDef": { - "cde_id": 3121376, - "cde_version": 1, - "source": "caDSR", - "term": "New Neoplasm Event Post Initial Therapy Indicator", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3121376&version=1.0" - } - } - }, - "project_id": { - "term": { - "description": "Unique ID for any specific defined piece of work that is undertaken or attempted to meet a single requirement.\n" - }, - "type": "string" - }, - "residual_disease": { - "enum": [ - "R0", - "R1", - "R2", - "RX" - ], - "term": { - "description": "Text terms to describe the status of a tissue margin following surgical resection.\n", - "termDef": { - "cde_id": 2608702, - "cde_version": 1, - "source": "caDSR", - "term": "Surgical Margin Resection Status", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2608702&version=1.0" - } - } - }, - "site_of_resection_or_biopsy": { - "term": { - "description": "The third edition of the International Classification of Diseases for Oncology, published in 2000, used principally in tumor and cancer registries for coding the site (topography) and the histology (morphology) of neoplasms. The description of an anatomical region or of a body part. Named locations of, or within, the body. A system of numbered categories for representation of data.\n", - "termDef": { - "cde_id": 3226281, - "cde_version": 1, - "source": "caDSR", - "term": "International Classification of Diseases for Oncology, Third Edition ICD-O-3 Site Code", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3226281&version=1.0" - } - }, - "type": "string" - }, - "state": { - "default": "validated", - "downloadable": [ - "uploaded", - "md5summed", - "validating", - "validated", - "error", - "invalid", - "released" - ], - "oneOf": [ - { - "enum": [ - "uploading", - "uploaded", - "md5summing", - "md5summed", - "validating", - "error", - "invalid", - "suppressed", - "redacted", - "live" - ] - }, - { - "enum": [ - "validated", - "submitted", - "released" - ] - } - ], - "public": [ - "live" - ], - "term": { - "description": "The current state of the object.\n" - } - }, - "submitter_id": { - "type": [ - "string", - "null" - ] - }, - "tissue_or_organ_of_origin": { - "term": { - "description": "Text term that describes the anatomic site of the tumor or disease.\n", - "termDef": { - "cde_id": 3427536, - "cde_version": 3, - "source": "caDSR", - "term": "Tumor Disease Anatomic Site", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3427536&version=3.0" - } - }, - "type": "string" - }, - "tumor_grade": { - "term": { - "description": "Numeric value to express the degree of abnormality of cancer cells, a measure of differentiation and aggressiveness.\n", - "termDef": { - "cde_id": 2785839, - "cde_version": 2, - "source": "caDSR", - "term": "Neoplasm Histologic Grade", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2785839&version=2.0" - } - }, - "type": "string" - }, - "tumor_stage": { - "term": { - "description": "The extent of a cancer in the body. Staging is usually based on the size of the tumor, whether lymph nodes contain cancer, and whether the cancer has spread from the original site to other parts of the body. The accepted values for tumor_stage depend on the tumor site, type, and accepted staging system. These items should accompany the tumor_stage value as associated metadata.\n", - "termDef": { - "cde_id": "C16899", - "cde_version": null, - "source": "NCIt", - "term": "Tumor Stage", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/pages/concept_details.jsf?dictionary=NCI%20Thesaurus&code=C16899" - } - }, - "type": "string" - }, - "type": { - "type": "string" - }, - "updated_datetime": { - "oneOf": [ - { - "format": "date-time", - "type": "string" - }, - { - "type": "null" - } - ], - "term": { - "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" - } - }, - "vascular_invasion_present": { - "enum": [ - "Yes", - "No", - "Unknown", - "Not Reported", - "Not Allowed To Collect" - ], - "term": { - "description": "The yes/no indicator to ask if large vessel or venous invasion was detected by surgery or presence in a tumor specimen.\n", - "termDef": { - "cde_id": 64358, - "cde_version": 3, - "source": "caDSR", - "term": "Tumor Vascular Invasion Ind-3", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=64358&version=3.0" - } - } - }, - "vital_status": { - "enum": [ - "alive", - "dead", - "lost to follow-up", - "unknown", - "not reported", - "Not Allowed To Collect", - "pending" - ], - "term": { - "description": "The survival state of the person registered on the protocol.\n", - "termDef": { - "cde_id": 5, - "cde_version": 5, - "source": "caDSR", - "term": "Patient Vital Status", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=5&version=5.0" - } - } - }, - "year_of_diagnosis": { - "term": { - "description": "Numeric value to represent the year of an individual's initial pathologic diagnosis of cancer.\n", - "termDef": { - "cde_id": 2896960, - "cde_version": 1, - "source": "caDSR", - "term": "Year of initial pathologic diagnosis", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2896960&version=1.0" - } - }, - "type": [ - "number", - "null" - ] - } - }, - "required": [ - "age_at_diagnosis", - "days_to_last_follow_up", - "vital_status", - "primary_diagnosis", - "morphology", - "tissue_or_organ_of_origin", - "site_of_resection_or_biopsy", - "classification_of_tumor", - "tumor_stage", - "tumor_grade", - "progression_or_recurrence", - "days_to_recurrence", - "days_to_last_known_disease_status", - "last_known_disease_status" - ], - "submittable": true, - "systemProperties": [ - "id", - "project_id", - "state", - "created_datetime", - "updated_datetime" - ], - "title": "Diagnosis", - "type": "object", - "uniqueKeys": [ - [ - "id" - ], - [ - "project_id", - "submitter_id" - ] - ], - "validators": null - }, - "experiment": { - "$schema": "http://json-schema.org/draft-04/schema#", - "additionalProperties": false, - "category": "administrative", - "description": "A coordinated set of actions and observations designed to generate data, with the ultimate goal of discovery or hypothesis testing.\n", - "id": "experiment", - "links": [ - { - "backref": "experiments", - "label": "performed_for", - "multiplicity": "many_to_one", - "name": "projects", - "required": true, - "target_type": "project" - } - ], - "namespace": "http://bloodprofilingatlas.org/bpa/", - "program": "*", - "project": "*", - "properties": { - "associated_experiment": { - "description": "The submitter_id for any experiment with which this experiment is associated, paired, or matched.", - "type": [ - "string" - ] - }, - "copy_numbers_identified": { - "description": "Are copy number variations identified in this experiment?", - "type": "boolean" - }, - "created_datetime": { - "oneOf": [ - { - "format": "date-time", - "type": "string" - }, - { - "type": "null" - } - ], - "term": { - "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" - } - }, - "data_description": { - "description": "Brief description of the data being provided for this experiment.", - "type": "string" - }, - "experimental_description": { - "description": "A brief description of the experiment being performed.", - "type": [ - "string" - ] - }, - "experimental_intent": { - "description": "Summary of the goals the experiment is designed to discover.", - "type": [ - "string" - ] - }, - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "systemAlias": "node_id", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "indels_identified": { - "description": "Are indels identified in this experiment?", - "type": "boolean" - }, - "marker_panel_description": { - "description": "Brief description of the marker panel used in this experiment.", - "type": "string" - }, - "number_experimental_group": { - "description": "The number denoting this experiment's place within the group within the whole.", - "type": [ - "integer" - ] - }, - "number_samples_per_experimental_group": { - "description": "The number of samples contained within this experimental group.", - "type": [ - "integer" - ] - }, - "project_id": { - "term": { - "description": "Unique ID for any specific defined piece of work that is undertaken or attempted to meet a single requirement.\n" - }, - "type": "string" - }, - "projects": { - "anyOf": [ - { - "items": { - "additionalProperties": true, - "maxItems": 1, - "minItems": 1, - "properties": { - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "submitter_id": { - "type": "string" - } - }, - "type": "object" - }, - "type": "array" - }, - { - "additionalProperties": true, - "properties": { - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "submitter_id": { - "type": "string" - } - }, - "type": "object" - } - ] - }, - "somatic_mutations_identified": { - "description": "Are somatic mutations identified for this experiment?", - "type": "boolean" - }, - "state": { - "default": "validated", - "downloadable": [ - "uploaded", - "md5summed", - "validating", - "validated", - "error", - "invalid", - "released" - ], - "oneOf": [ - { - "enum": [ - "uploading", - "uploaded", - "md5summing", - "md5summed", - "validating", - "error", - "invalid", - "suppressed", - "redacted", - "live" - ] - }, - { - "enum": [ - "validated", - "submitted", - "released" - ] - } - ], - "public": [ - "live" - ], - "term": { - "description": "The current state of the object.\n" - } - }, - "submitter_id": { - "type": [ - "string", - "null" - ] - }, - "type": { - "enum": [ - "experiment" - ] - }, - "type_of_data": { - "description": "Is the data raw or processed?", - "enum": [ - "Raw", - "Processed" - ] - }, - "type_of_sample": { - "description": "String indicator identifying the types of samples as contrived or clinical.", - "type": [ - "string" - ] - }, - "type_of_specimen": { - "description": "Broad description of the specimens used in the experiment.", - "type": [ - "string" - ] - }, - "updated_datetime": { - "oneOf": [ - { - "format": "date-time", - "type": "string" - }, - { - "type": "null" - } - ], - "term": { - "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" - } - } - }, - "required": [ - "submitter_id", - "projects" - ], - "submittable": true, - "systemProperties": [ - "id", - "project_id", - "created_datetime", - "updated_datetime", - "state" - ], - "title": "Experiment", - "type": "object", - "uniqueKeys": [ - [ - "id" - ], - [ - "project_id", - "submitter_id" - ] - ], - "validators": null - }, - "experimental_metadata": { - "$schema": "http://json-schema.org/draft-04/schema#", - "additionalProperties": false, - "category": "metadata_file", - "description": "Data file containing the metadata for the experiment performed.\n", - "id": "experimental_metadata", - "links": [ - { - "backref": "experiment_metadata_files", - "label": "derived_from", - "multiplicity": "many_to_many", - "name": "experiments", - "required": false, - "target_type": "experiment" - } - ], - "namespace": "http://gdc.nci.nih.gov", - "program": "*", - "project": "*", - "properties": { - "created_datetime": { - "oneOf": [ - { - "format": "date-time", - "type": "string" - }, - { - "type": "null" - } - ], - "term": { - "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" - } - }, - "data_category": { - "term": { - "description": "Broad categorization of the contents of the data file.\n" - }, - "type": [ - "string" - ] - }, - "data_format": { - "term": { - "description": "Format of the data files.\n" - }, - "type": [ - "string" - ] - }, - "data_type": { - "enum": [ - "Experimental Metadata" - ], - "term": { - "description": "Specific content type of the data file.\n" - } - }, - "error_type": { - "enum": [ - "file_size", - "file_format", - "md5sum" - ], - "term": { - "description": "Type of error for the data file object.\n" - } - }, - "experiments": { - "anyOf": [ - { - "items": { - "additionalProperties": true, - "maxItems": 1, - "minItems": 1, - "properties": { - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "submitter_id": { - "type": "string" - } - }, - "type": "object" - }, - "type": "array" - }, - { - "additionalProperties": true, - "properties": { - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "submitter_id": { - "type": "string" - } - }, - "type": "object" - } - ] - }, - "file_name": { - "term": { - "description": "The name (or part of a name) of a file (of any type).\n" - }, - "type": "string" - }, - "file_size": { - "term": { - "description": "The size of the data file (object) in bytes.\n" - }, - "type": "integer" - }, - "file_state": { - "default": "registered", - "enum": [ - "registered", - "uploading", - "uploaded", - "validating", - "validated", - "submitted", - "processing", - "processed", - "released", - "error" - ], - "term": { - "description": "The current state of the data file object.\n" - } - }, - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "systemAlias": "node_id", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "md5sum": { - "pattern": "^[a-f0-9]{32}$", - "term": { - "description": "The 128-bit hash value expressed as a 32 digit hexadecimal number used as a file's digital fingerprint.\n" - }, - "type": "string" - }, - "object_id": { - "description": "The GUID of the object in the index service.", - "type": "string" - }, - "project_id": { - "term": { - "description": "Unique ID for any specific defined piece of work that is undertaken or attempted to meet a single requirement.\n" - }, - "type": "string" - }, - "state": { - "default": "validated", - "downloadable": [ - "uploaded", - "md5summed", - "validating", - "validated", - "error", - "invalid", - "released" - ], - "oneOf": [ - { - "enum": [ - "uploading", - "uploaded", - "md5summing", - "md5summed", - "validating", - "error", - "invalid", - "suppressed", - "redacted", - "live" - ] - }, - { - "enum": [ - "validated", - "submitted", - "released" - ] - } - ], - "public": [ - "live" - ], - "term": { - "description": "The current state of the object.\n" - } - }, - "state_comment": { - "description": "Optional comment about why the file is in the current state, mainly for invalid state.\n", - "type": "string" - }, - "submitter_id": { - "description": "The file ID assigned by the submitter.", - "type": [ - "string", - "null" - ] - }, - "type": { - "enum": [ - "experimental_metadata" - ] - }, - "updated_datetime": { - "oneOf": [ - { - "format": "date-time", - "type": "string" - }, - { - "type": "null" - } - ], - "term": { - "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" - } - } - }, - "required": [ - "submitter_id", - "file_name", - "file_size", - "md5sum", - "data_category", - "data_type", - "data_format" - ], - "submittable": true, - "systemProperties": [ - "id", - "project_id", - "created_datetime", - "updated_datetime", - "state", - "file_state", - "error_type" - ], - "title": "Experimental Metadata", - "type": "object", - "uniqueKeys": [ - [ - "id" - ], - [ - "project_id", - "submitter_id" - ] - ], - "validators": null - }, - "exposure": { - "$schema": "http://json-schema.org/draft-04/schema#", - "additionalProperties": false, - "category": "clinical", - "description": "Clinically relevant patient information not immediately resulting from genetic predispositions.\n", - "id": "exposure", - "links": [ - { - "backref": "exposures", - "label": "describes", - "multiplicity": "many_to_one", - "name": "cases", - "required": true, - "target_type": "case" - } - ], - "namespace": "http://gdc.nci.nih.gov", - "preferred": [ - "cigarettes_per_day", - "years_smoked" - ], - "program": "*", - "project": "*", - "properties": { - "alcohol_history": { - "term": { - "description": "A response to a question that asks whether the participant has consumed at least 12 drinks of any kind of alcoholic beverage in their lifetime.\n", - "termDef": { - "cde_id": 2201918, - "cde_version": 1, - "source": "caDSR", - "term": "Alcohol Lifetime History Indicator", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2201918&version=1.0" - } - }, - "type": "string" - }, - "alcohol_intensity": { - "term": { - "description": "Category to describe the patient's current level of alcohol use as self-reported by the patient.\n", - "termDef": { - "cde_id": 3457767, - "cde_version": 1, - "source": "caDSR", - "term": "Person Self-Report Alcoholic Beverage Exposure Category", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3457767&version=1.0" - } - }, - "type": "string" - }, - "bmi": { - "term": { - "description": "The body mass divided by the square of the body height expressed in units of kg/m^2.\n", - "termDef": { - "cde_id": 4973892, - "cde_version": 1, - "source": "caDSR", - "term": "Body Mass Index (BMI)", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=4973892&version=1.0" - } - }, - "type": "number" - }, - "cases": { - "anyOf": [ - { - "items": { - "additionalProperties": true, - "maxItems": 1, - "minItems": 1, - "properties": { - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "submitter_id": { - "type": "string" - } - }, - "type": "object" - }, - "type": "array" - }, - { - "additionalProperties": true, - "properties": { - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "submitter_id": { - "type": "string" - } - }, - "type": "object" - } - ] - }, - "cigarettes_per_day": { - "term": { - "description": "The average number of cigarettes smoked per day.\n", - "termDef": { - "cde_id": 2001716, - "cde_version": 4, - "source": "caDSR", - "term": "Smoking Use Average Number", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2001716&version=4.0" - } - }, - "type": "number" - }, - "created_datetime": { - "oneOf": [ - { - "format": "date-time", - "type": "string" - }, - { - "type": "null" - } - ], - "term": { - "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" - } - }, - "height": { - "term": { - "description": "The height of the patient in centimeters.\n", - "termDef": { - "cde_id": 649, - "cde_version": 4.1, - "source": "caDSR", - "term": "Patient Height Measurement", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=649&version=4.1" - } - }, - "type": "number" - }, - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "systemAlias": "node_id", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "pack_years_smoked": { - "term": { - "description": "Numeric computed value to represent lifetime tobacco exposure defined as number of cigarettes smoked per day x number of years smoked divided by 20.\n", - "termDef": { - "cde_id": 2955385, - "cde_version": 1, - "source": "caDSR", - "term": "Person Cigarette Smoking History Pack Year Value", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2955385&version=1.0" - } - }, - "type": "number" - }, - "project_id": { - "term": { - "description": "Unique ID for any specific defined piece of work that is undertaken or attempted to meet a single requirement.\n" - }, - "type": "string" - }, - "state": { - "default": "validated", - "downloadable": [ - "uploaded", - "md5summed", - "validating", - "validated", - "error", - "invalid", - "released" - ], - "oneOf": [ - { - "enum": [ - "uploading", - "uploaded", - "md5summing", - "md5summed", - "validating", - "error", - "invalid", - "suppressed", - "redacted", - "live" - ] - }, - { - "enum": [ - "validated", - "submitted", - "released" - ] - } - ], - "public": [ - "live" - ], - "term": { - "description": "The current state of the object.\n" - } - }, - "submitter_id": { - "type": [ - "string", - "null" - ] - }, - "tobacco_smoking_onset_year": { - "term": { - "description": "The year in which the participant began smoking.\n", - "termDef": { - "cde_id": 2228604, - "cde_version": 1, - "source": "caDSR", - "term": "Started Smoking Year", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2228604&version=1.0" - } - }, - "type": "integer" - }, - "tobacco_smoking_quit_year": { - "term": { - "description": "The year in which the participant quit smoking.\n", - "termDef": { - "cde_id": 2228610, - "cde_version": 1, - "source": "caDSR", - "term": "Stopped Smoking Year", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2228610&version=1.0" - } - }, - "type": "integer" - }, - "tobacco_smoking_status": { - "enum": [ - 1, - 2, - 3, - 4, - 5, - 6, - 7, - "Unknown", - "Not Reported", - "Not Allowed To Collect" - ], - "term": { - "description": "Category describing current smoking status and smoking history as self-reported by a patient.\n", - "termDef": { - "cde_id": 2181650, - "cde_version": 1, - "source": "caDSR", - "term": "Patient Smoking History Category", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2181650&version=1.0" - } - } - }, - "type": { - "enum": [ - "exposure" - ] - }, - "updated_datetime": { - "oneOf": [ - { - "format": "date-time", - "type": "string" - }, - { - "type": "null" - } - ], - "term": { - "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" - } - }, - "weight": { - "term": { - "description": "The weight of the patient measured in kilograms.\n", - "termDef": { - "cde_id": 651, - "cde_version": 4, - "source": "caDSR", - "term": "Patient Weight Measurement", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=651&version=4.0" - } - }, - "type": "number" - }, - "years_smoked": { - "term": { - "description": "Numeric value (or unknown) to represent the number of years a person has been smoking.\n", - "termDef": { - "cde_id": 3137957, - "cde_version": 1, - "source": "caDSR", - "term": "Person Smoking Duration Year Count", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3137957&version=1.0" - } - }, - "type": "number" - } - }, - "submittable": true, - "systemProperties": [ - "id", - "project_id", - "state", - "created_datetime", - "updated_datetime" - ], - "title": "Exposure", - "type": "object", - "uniqueKeys": [ - [ - "id" - ], - [ - "project_id", - "submitter_id" - ] - ], - "validators": null - }, - "family_history": { - "$schema": "http://json-schema.org/draft-04/schema#", - "additionalProperties": false, - "category": "clinical", - "description": "Record of a patient's background regarding cancer events of blood relatives.\n", - "id": "family_history", - "links": [ - { - "backref": "family_histories", - "label": "describes", - "multiplicity": "many_to_one", - "name": "cases", - "required": true, - "target_type": "case" - } - ], - "namespace": "http://gdc.nci.nih.gov", - "program": "*", - "project": "*", - "properties": { - "cases": { - "anyOf": [ - { - "items": { - "additionalProperties": true, - "maxItems": 1, - "minItems": 1, - "properties": { - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "submitter_id": { - "type": "string" - } - }, - "type": "object" - }, - "type": "array" - }, - { - "additionalProperties": true, - "properties": { - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "submitter_id": { - "type": "string" - } - }, - "type": "object" - } - ] - }, - "created_datetime": { - "oneOf": [ - { - "format": "date-time", - "type": "string" - }, - { - "type": "null" - } - ], - "term": { - "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" - } - }, - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "systemAlias": "node_id", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "project_id": { - "term": { - "description": "Unique ID for any specific defined piece of work that is undertaken or attempted to meet a single requirement.\n" - }, - "type": "string" - }, - "relationship_age_at_diagnosis": { - "term": { - "description": "The age (in years) when the patient's relative was first diagnosed.\n", - "termDef": { - "cde_id": 5300571, - "cde_version": 1, - "source": "caDSR", - "term": "Relative Diagnosis Age Value", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=5300571&version=1.0" - } - }, - "type": "number" - }, - "relationship_gender": { - "enum": [ - "female", - "male", - "unknown", - "unspecified", - "not reported" - ], - "term": { - "description": "Text designations that identify gender. Gender is described as the assemblage of properties that distinguish people on the basis of their societal roles. [Explanatory Comment 1: Identification of gender is based upon self-report and may come from a form, questionnaire, interview, etc.]\n", - "termDef": { - "cde_id": 2200604, - "cde_version": 3, - "source": "caDSR", - "term": "Person Gender Text Type", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2200604&version=3.0" - } - } - }, - "relationship_primary_diagnosis": { - "term": { - "description": "Text term for the structural pattern of cancer cells used to define a microscopic diagnosis.\n", - "termDef": { - "cde_id": 3081934, - "cde_version": 3, - "source": "caDSR", - "term": "Neoplasm Histologic Type Name", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3081934&version=3.0" - } - }, - "type": "string" - }, - "relationship_type": { - "term": { - "description": "The subgroup that describes the state of connectedness between members of the unit of society organized around kinship ties.\n", - "termDef": { - "cde_id": 2690165, - "cde_version": 2, - "source": "caDSR", - "term": "Family Member Relationship Type", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2690165&version=2.0" - } - }, - "type": "string" - }, - "relative_with_cancer_history": { - "enum": [ - "yes", - "no", - "unknown", - "not reported" - ], - "term": { - "description": "Indicator to signify whether or not an individual's biological relative has been diagnosed with another type of cancer.\n", - "termDef": { - "cde_id": 3901752, - "cde_version": 1, - "source": "caDSR", - "term": "Other Cancer Biological Relative History Indicator", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3901752&version=1.0" - } - } - }, - "state": { - "default": "validated", - "downloadable": [ - "uploaded", - "md5summed", - "validating", - "validated", - "error", - "invalid", - "released" - ], - "oneOf": [ - { - "enum": [ - "uploading", - "uploaded", - "md5summing", - "md5summed", - "validating", - "error", - "invalid", - "suppressed", - "redacted", - "live" - ] - }, - { - "enum": [ - "validated", - "submitted", - "released" - ] - } - ], - "public": [ - "live" - ], - "term": { - "description": "The current state of the object.\n" - } - }, - "submitter_id": { - "type": [ - "string", - "null" - ] - }, - "type": { - "enum": [ - "family_history" - ] - }, - "updated_datetime": { - "oneOf": [ - { - "format": "date-time", - "type": "string" - }, - { - "type": "null" - } - ], - "term": { - "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" - } - } - }, - "submittable": true, - "systemProperties": [ - "id", - "project_id", - "state", - "created_datetime", - "updated_datetime" - ], - "title": "Family History", - "type": "object", - "uniqueKeys": [ - [ - "id" - ], - [ - "project_id", - "submitter_id" - ] - ], - "validators": null - }, - "keyword": { - "$schema": "http://json-schema.org/draft-04/schema#", - "additionalProperties": false, - "category": "administrative", - "description": "A keyword for a project.", - "id": "keyword", - "links": [ - { - "backref": "keywords", - "label": "describe", - "multiplicity": "many_to_many", - "name": "projects", - "required": true, - "target_type": "project" - } - ], - "namespace": "http://gdc.nci.nih.gov", - "program": "*", - "project": "*", - "properties": { - "created_datetime": { - "oneOf": [ - { - "format": "date-time", - "type": "string" - }, - { - "type": "null" - } - ], - "term": { - "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" - } - }, - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "systemAlias": "node_id", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "keyword_name": { - "description": "The name of the keyword.", - "type": "string" - }, - "project_id": { - "type": "string" - }, - "projects": { - "anyOf": [ - { - "items": { - "additionalProperties": true, - "minItems": 1, - "properties": { - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "submitter_id": { - "type": "string" - } - }, - "type": "object" - }, - "type": "array" - }, - { - "additionalProperties": true, - "properties": { - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "submitter_id": { - "type": "string" - } - }, - "type": "object" - } - ] - }, - "state": { - "default": "validated", - "downloadable": [ - "uploaded", - "md5summed", - "validating", - "validated", - "error", - "invalid", - "released" - ], - "oneOf": [ - { - "enum": [ - "uploading", - "uploaded", - "md5summing", - "md5summed", - "validating", - "error", - "invalid", - "suppressed", - "redacted", - "live" - ] - }, - { - "enum": [ - "validated", - "submitted", - "released" - ] - } - ], - "public": [ - "live" - ], - "term": { - "description": "The current state of the object.\n" - } - }, - "submitter_id": { - "type": [ - "string", - "null" - ] - }, - "type": { - "enum": [ - "keyword" - ] - }, - "updated_datetime": { - "oneOf": [ - { - "format": "date-time", - "type": "string" - }, - { - "type": "null" - } - ], - "term": { - "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" - } - } - }, - "required": [ - "submitter_id", - "projects" - ], - "submittable": true, - "systemProperties": [ - "id", - "project_id", - "state", - "created_datetime", - "updated_datetime" - ], - "title": "Keyword", - "type": "object", - "uniqueKeys": [ - [ - "id" - ], - [ - "project_id", - "submitter_id" - ] - ], - "validators": null - }, - "metaschema": { - "$schema": "http://json-schema.org/draft-04/schema#", - "allOf": [ - { - "$ref": "http://json-schema.org/draft-04/schema#" - } - ], - "definitions": { - "link": { - "additionalProperties": false, - "properties": { - "backref": { - "$ref": "#/field" - }, - "label": { - "$ref": "#/field" - }, - "multiplicity": { - "enum": [ - "one_to_one", - "one_to_many", - "many_to_one", - "many_to_many" - ], - "type": "string" - }, - "name": { - "$ref": "#/field" - }, - "required": { - "type": "boolean" - }, - "target_type": { - "$ref": "#/field" - } - }, - "required": [ - "name", - "target_type", - "backref", - "label", - "multiplicity", - "required" - ], - "type": "object" - }, - "link_subgroup": { - "properties": { - "exclusive": { - "type": "boolean" - }, - "required": { - "type": "boolean" - }, - "subgroup": { - "items": { - "$ref": "#/definitions/link" - }, - "type": "array" - } - }, - "required": [ - "exclusive", - "required", - "subgroup" - ] - }, - "validator_def": { - "properties": { - "link_to_type": { - "type": "string" - }, - "multiplicity": { - "enum": [ - "one_to_one", - "one_to_many", - "many_to_one", - "many_to_many" - ], - "type": "string" - } - }, - "required": [ - "property", - "function" - ], - "title": "Define a validator to be used on a property", - "type": "object" - } - }, - "field": { - "pattern": "^[_a-zA-Z0-9]*$", - "type": "string" - }, - "id": "metaschema", - "properties": { - "category": { - "$ref": "#/field", - "enum": [ - "administrative", - "analysis", - "biospecimen", - "clinical", - "data", - "data_bundle", - "data_file", - "index_file", - "metadata_file", - "notation", - "qc_bundle", - "TBD" - ] - }, - "links": { - "items": { - "oneOf": [ - { - "$ref": "#/definitions/link" - }, - { - "$ref": "#/definitions/link_subgroup" - } - ] - }, - "title": "Define a link to other GDC entities", - "type": "array" - }, - "properties": { - "additionalProperties": false, - "patternProperties": { - "^[_a-zA-Z0-9]*$": { - "type": "object" - } - }, - "type": "object" - }, - "submittable": { - "type": "boolean" - }, - "system_properties": { - "type": "array" - }, - "unique_keys": { - "items": { - "items": { - "type": "string" - }, - "type": "array" - }, - "type": "array" - }, - "validators": { - "items": { - "$ref": "#/definitions/validator_def" - }, - "type": [ - "array", - "null" - ] - } - }, - "required": [ - "category", - "program", - "project", - "uniqueKeys", - "links", - "validators", - "systemProperties", - "id" - ], - "title": "GDC JSON schema extension" - }, - "program": { - "$schema": "http://json-schema.org/draft-04/schema#", - "additionalProperties": false, - "category": "administrative", - "description": "A broad framework of goals to be achieved. (NCIt C52647)\n", - "id": "program", - "links": [], - "program": "*", - "project": "*", - "properties": { - "dbgap_accession_number": { - "description": "The dbgap accession number provided for the program.", - "type": "string" - }, - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "systemAlias": "node_id", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "name": { - "description": "Full name/title of the program.", - "type": "string" - }, - "type": { - "type": "string" - } - }, - "required": [ - "name", - "dbgap_accession_number" - ], - "submittable": false, - "systemProperties": [ - "id" - ], - "title": "Program", - "type": "object", - "uniqueKeys": [ - [ - "id" - ], - [ - "name" - ] - ], - "validators": null - }, - "project": { - "$schema": "http://json-schema.org/draft-04/schema#", - "additionalProperties": false, - "category": "administrative", - "constraints": null, - "description": "Any specifically defined piece of work that is undertaken or attempted to meet a single requirement. (NCIt C47885)\n", - "id": "project", - "links": [ - { - "backref": "projects", - "label": "member_of", - "multiplicity": "many_to_one", - "name": "programs", - "required": true, - "target_type": "program" - } - ], - "program": "*", - "project": "*", - "properties": { - "availability_mechanism": { - "description": "Mechanism by which the project will be made avilable.", - "type": "string" - }, - "availability_type": { - "description": "Is the project open or restricted?", - "enum": [ - "Open", - "Restricted" - ] - }, - "code": { - "description": "Unique identifier for the project.", - "type": "string" - }, - "date_collected": { - "description": "The date or date range in which the project data was collected.", - "type": "string" - }, - "dbgap_accession_number": { - "description": "The dbgap accession number provided for the project.", - "type": "string" - }, - "id": { - "description": "UUID for the project.", - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "systemAlias": "node_id", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "intended_release_date": { - "description": "Tracks a Project's intended release date.", - "format": "date-time", - "type": "string" - }, - "investigator_affiliation": { - "description": "The investigator's affiliation with respect to a research institution.", - "type": "string" - }, - "investigator_name": { - "description": "Name of the principal investigator for the project.", - "type": "string" - }, - "name": { - "description": "Display name/brief description for the project.", - "type": "string" - }, - "programs": { - "anyOf": [ - { - "items": { - "additionalProperties": true, - "maxItems": 1, - "minItems": 1, - "properties": { - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "submitter_id": { - "type": "string" - } - }, - "type": "object" - }, - "type": "array" - }, - { - "additionalProperties": true, - "properties": { - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "submitter_id": { - "type": "string" - } - }, - "type": "object" - } - ], - "description": "Indicates that the project is logically part of the indicated project.\n" - }, - "releasable": { - "default": false, - "description": "A project can only be released by the user when `releasable` is true.\n", - "type": "boolean" - }, - "released": { - "default": false, - "description": "To release a project is to tell the GDC to include all submitted\nentities in the next GDC index.\n", - "type": "boolean" - }, - "state": { - "default": "open", - "description": "The possible states a project can be in. All but `open` are\nequivalent to some type of locked state.\n", - "enum": [ - "open", - "review", - "submitted", - "processing", - "closed", - "legacy" - ] - }, - "support_id": { - "description": "The ID of the source providing support/grant resources.", - "type": "string" - }, - "support_source": { - "description": "The name of source providing support/grant resources.", - "type": "string" - }, - "type": { - "type": "string" - } - }, - "required": [ - "code", - "name", - "programs" - ], - "submittable": true, - "systemProperties": [ - "id", - "state", - "released", - "releasable", - "intended_release_date" - ], - "title": "Project", - "type": "object", - "uniqueKeys": [ - [ - "id" - ], - [ - "code" - ] - ], - "validators": null - }, - "publication": { - "$schema": "http://json-schema.org/draft-04/schema#", - "additionalProperties": false, - "category": "administrative", - "description": "Publication for a project.", - "id": "publication", - "links": [ - { - "backref": "publications", - "label": "refers_to", - "multiplicity": "many_to_many", - "name": "projects", - "required": true, - "target_type": "project" - } - ], - "namespace": "http://gdc.nci.nih.gov", - "program": "*", - "project": "*", - "properties": { - "created_datetime": { - "oneOf": [ - { - "format": "date-time", - "type": "string" - }, - { - "type": "null" - } - ], - "term": { - "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" - } - }, - "doi": { - "type": "string" - }, - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "systemAlias": "node_id", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "pmid": { - "type": "string" - }, - "project_id": { - "type": "string" - }, - "projects": { - "anyOf": [ - { - "items": { - "additionalProperties": true, - "minItems": 1, - "properties": { - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "submitter_id": { - "type": "string" - } - }, - "type": "object" - }, - "type": "array" - }, - { - "additionalProperties": true, - "properties": { - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "submitter_id": { - "type": "string" - } - }, - "type": "object" - } - ] - }, - "state": { - "default": "validated", - "downloadable": [ - "uploaded", - "md5summed", - "validating", - "validated", - "error", - "invalid", - "released" - ], - "oneOf": [ - { - "enum": [ - "uploading", - "uploaded", - "md5summing", - "md5summed", - "validating", - "error", - "invalid", - "suppressed", - "redacted", - "live" - ] - }, - { - "enum": [ - "validated", - "submitted", - "released" - ] - } - ], - "public": [ - "live" - ], - "term": { - "description": "The current state of the object.\n" - } - }, - "submitter_id": { - "type": [ - "string", - "null" - ] - }, - "type": { - "enum": [ - "publication" - ] - }, - "updated_datetime": { - "oneOf": [ - { - "format": "date-time", - "type": "string" - }, - { - "type": "null" - } - ], - "term": { - "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" - } - } - }, - "required": [ - "submitter_id", - "projects" - ], - "submittable": true, - "systemProperties": [ - "id", - "project_id", - "state", - "created_datetime", - "updated_datetime" - ], - "title": "Publication", - "type": "object", - "uniqueKeys": [ - [ - "id" - ], - [ - "project_id", - "submitter_id" - ] - ], - "validators": null - }, - "read_group": { - "$schema": "http://json-schema.org/draft-04/schema#", - "additionalProperties": false, - "category": "biospecimen", - "description": "Sequencing reads from one lane of an NGS experiment.", - "id": "read_group", - "links": [ - { - "backref": "read_groups", - "label": "derived_from", - "multiplicity": "many_to_one", - "name": "aliquots", - "required": true, - "target_type": "aliquot" - } - ], - "namespace": "http://gdc.nci.nih.gov", - "program": "*", - "project": "*", - "properties": { - "RIN": { - "term": { - "description": "A numerical assessment of the integrity of RNA based on the entire electrophoretic trace of the RNA sample including the presence or absence of degradation products.\n", - "termDef": { - "cde_id": 5278775, - "cde_version": 1, - "source": "caDSR", - "term": "Biospecimen RNA Integrity Number Value", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=5278775&version=1.0" - } - }, - "type": "number" - }, - "adapter_name": { - "term": { - "description": "Name of the sequencing adapter.\n" - }, - "type": "string" - }, - "adapter_sequence": { - "term": { - "description": "Base sequence of the sequencing adapter.\n" - }, - "type": "string" - }, - "aliquots": { - "anyOf": [ - { - "items": { - "additionalProperties": true, - "maxItems": 1, - "minItems": 1, - "properties": { - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "submitter_id": { - "type": "string" - } - }, - "type": "object" - }, - "type": "array" - }, - { - "additionalProperties": true, - "properties": { - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "submitter_id": { - "type": "string" - } - }, - "type": "object" - } - ] - }, - "barcoding_applied": { - "description": "True/False: was barcoding applied?", - "type": "boolean" - }, - "base_caller_name": { - "term": { - "description": "Name of the base caller.\n" - }, - "type": "string" - }, - "base_caller_version": { - "term": { - "description": "Version of the base caller.\n" - }, - "type": "string" - }, - "created_datetime": { - "oneOf": [ - { - "format": "date-time", - "type": "string" - }, - { - "type": "null" - } - ], - "term": { - "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" - } - }, - "experiment_name": { - "term": { - "description": "Submitter-defined name for the experiment.\n" - }, - "type": "string" - }, - "flow_cell_barcode": { - "term": { - "description": "Flow Cell Barcode.\n" - }, - "type": "string" - }, - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "includes_spike_ins": { - "term": { - "description": "Spike-in included?\n" - }, - "type": "boolean" - }, - "instrument_model": { - "enum": [ - "454 GS FLX Titanium", - "AB SOLiD 4", - "AB SOLiD 2", - "AB SOLiD 3", - "Complete Genomics", - "Illumina HiSeq X Ten", - "Illumina HiSeq X Five", - "Illumina Genome Analyzer II", - "Illumina Genome Analyzer IIx", - "Illumina HiSeq 2000", - "Illumina HiSeq 2500", - "Illumina HiSeq 4000", - "Illumina MiSeq", - "Illumina NextSeq", - "Ion Torrent PGM", - "Ion Torrent Proton", - "PacBio RS", - "Ion S5 XL System, Ion 530 Chip", - "Other" - ], - "terms": { - "description": "Numeric value that represents the sample dimension that is greater than the shortest dimension and less than the longest dimension, measured in millimeters.\n", - "termDef": { - "cde_id": 5432604, - "cde_version": 1, - "source": "caDSR", - "term": "Tissue Sample Intermediate Dimension Millimeter Measurement", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=5432604&version=1.0" - } - } - }, - "is_paired_end": { - "term": { - "description": "Are the reads paired end?\n" - }, - "type": "boolean" - }, - "library_name": { - "term": { - "description": "Name of the library.\n" - }, - "type": "string" - }, - "library_preparation_kit_catalog_number": { - "term": { - "description": "Catalog of Library Preparation Kit\n" - }, - "type": "string" - }, - "library_preparation_kit_name": { - "term": { - "description": "Name of Library Preparation Kit\n" - }, - "type": "string" - }, - "library_preparation_kit_vendor": { - "term": { - "description": "Vendor of Library Preparation Kit\n" - }, - "type": "string" - }, - "library_preparation_kit_version": { - "term": { - "description": "Version of Library Preparation Kit\n" - }, - "type": "string" - }, - "library_selection": { - "enum": [ - "Hybrid_Selection", - "PCR", - "Affinity_Enrichment", - "Poly-T_Enrichment", - "RNA_Depletion", - "Other" - ], - "term": { - "description": "Library Selection Method\n" - } - }, - "library_strand": { - "enum": [ - "Unstranded", - "First_Stranded", - "Second_Stranded" - ], - "term": { - "description": "Library stranded-ness.\n" - } - }, - "library_strategy": { - "enum": [ - "WGS", - "WXS", - "RNA-Seq", - "ChIP-Seq", - "miRNA-Seq", - "Bisulfite-Seq", - "Validation", - "Amplicon", - "Other" - ], - "term": { - "description": "Library strategy.\n" - } - }, - "platform": { - "enum": [ - "Illumina", - "SOLiD", - "LS454", - "Ion Torrent", - "Complete Genomics", - "PacBio", - "Other" - ], - "term": { - "description": "Name of the platform used to obtain data.\n" - } - }, - "project_id": { - "term": { - "description": "Unique ID for any specific defined piece of work that is undertaken or attempted to meet a single requirement.\n" - }, - "type": "string" - }, - "read_group_name": { - "description": "Read Group Name", - "type": "string" - }, - "read_length": { - "type": "integer" - }, - "sequencing_center": { - "term": { - "description": "Name of the center that provided the sequence files.\n" - }, - "type": "string" - }, - "sequencing_date": { - "oneOf": [ - { - "format": "date-time", - "type": "string" - }, - { - "type": "null" - } - ], - "term": { - "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" - } - }, - "size_selection_range": { - "term": { - "description": "Range of size selection.\n" - }, - "type": "string" - }, - "spike_ins_concentration": { - "term": { - "description": "Spike in concentration.\n" - }, - "type": "string" - }, - "spike_ins_fasta": { - "term": { - "description": "Name of the FASTA file that contains the spike-in sequences.\n" - }, - "type": "string" - }, - "state": { - "default": "validated", - "downloadable": [ - "uploaded", - "md5summed", - "validating", - "validated", - "error", - "invalid", - "released" - ], - "oneOf": [ - { - "enum": [ - "uploading", - "uploaded", - "md5summing", - "md5summed", - "validating", - "error", - "invalid", - "suppressed", - "redacted", - "live" - ] - }, - { - "enum": [ - "validated", - "submitted", - "released" - ] - } - ], - "public": [ - "live" - ], - "term": { - "description": "The current state of the object.\n" - } - }, - "submitter_id": { - "type": "string" - }, - "target_capture_kit_catalog_number": { - "term": { - "description": "Catalog of Target Capture Kit.\n" - }, - "type": "string" - }, - "target_capture_kit_name": { - "term": { - "description": "Name of Target Capture Kit.\n" - }, - "type": "string" - }, - "target_capture_kit_target_region": { - "term": { - "description": "Target Capture Kit BED file.\n" - }, - "type": "string" - }, - "target_capture_kit_vendor": { - "term": { - "description": "Vendor of Target Capture Kit.\n" - }, - "type": "string" - }, - "target_capture_kit_version": { - "term": { - "description": "Version of Target Capture Kit.\n" - }, - "type": "string" - }, - "to_trim_adapter_sequence": { - "term": { - "description": "Does the user suggest adapter trimming?\n" - }, - "type": "boolean" - }, - "type": { - "enum": [ - "read_group" - ] - }, - "updated_datetime": { - "oneOf": [ - { - "format": "date-time", - "type": "string" - }, - { - "type": "null" - } - ], - "term": { - "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" - } - } - }, - "required": [ - "type", - "submitter_id", - "aliquots" - ], - "submittable": true, - "systemProperties": [ - "id", - "project_id", - "created_datetime", - "updated_datetime", - "state" - ], - "title": "Read Group", - "type": "object", - "uniqueKeys": [ - [ - "id" - ], - [ - "project_id", - "submitter_id" - ] - ], - "validators": null - }, - "read_group_qc": { - "$schema": "http://json-schema.org/draft-04/schema#", - "additionalProperties": false, - "category": "notation", - "description": "GDC QC run metadata.", - "id": "read_group_qc", - "links": [ - { - "exclusive": true, - "required": true, - "subgroup": [ - { - "backref": "read_group_qcs", - "label": "data_from", - "multiplicity": "one_to_one", - "name": "submitted_aligned_reads_files", - "required": false, - "target_type": "submitted_aligned_reads" - }, - { - "backref": "read_group_qcs", - "label": "data_from", - "multiplicity": "one_to_many", - "name": "submitted_unaligned_reads_files", - "required": false, - "target_type": "submitted_unaligned_reads" - } - ] - }, - { - "backref": "read_group_qcs", - "label": "generated_from", - "multiplicity": "many_to_one", - "name": "read_groups", - "required": true, - "target_type": "read_group" - } - ], - "namespace": "http://gdc.nci.nih.gov", - "program": "*", - "project": "*", - "properties": { - "adapter_content": { - "enum": [ - "FAIL", - "PASS", - "WARN" - ], - "term": { - "description": "State classification given by FASTQC for the metric. Metric specific details about the states are available on their website.\n", - "termDef": { - "cde_id": null, - "cde_version": null, - "source": "FastQC", - "term": "QC Metric State", - "term_url": "http://www.bioinformatics.babraham.ac.uk/projects/fastqc/Help/3%20Analysis%20Modules/" - } - } - }, - "basic_statistics": { - "enum": [ - "FAIL", - "PASS", - "WARN" - ], - "term": { - "description": "State classification given by FASTQC for the metric. Metric specific details about the states are available on their website.\n", - "termDef": { - "cde_id": null, - "cde_version": null, - "source": "FastQC", - "term": "QC Metric State", - "term_url": "http://www.bioinformatics.babraham.ac.uk/projects/fastqc/Help/3%20Analysis%20Modules/" - } - } - }, - "created_datetime": { - "oneOf": [ - { - "format": "date-time", - "type": "string" - }, - { - "type": "null" - } - ], - "term": { - "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" - } - }, - "encoding": { - "term": { - "description": "Version of ASCII encoding of quality values found in the file.\n", - "termDef": { - "cde_id": null, - "cde_version": null, - "source": "FastQC", - "term": "Encoding", - "term_url": "http://www.bioinformatics.babraham.ac.uk/projects/fastqc/Help/3%20Analysis%20Modules/1%20Basic%20Statistics.html" - } - }, - "type": "string" - }, - "fastq_name": { - "term": { - "description": "The name (or part of a name) of a file (of any type).\n" - }, - "type": "string" - }, - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "systemAlias": "node_id", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "kmer_content": { - "enum": [ - "FAIL", - "PASS", - "WARN" - ], - "term": { - "description": "State classification given by FASTQC for the metric. Metric specific details about the states are available on their website.\n", - "termDef": { - "cde_id": null, - "cde_version": null, - "source": "FastQC", - "term": "QC Metric State", - "term_url": "http://www.bioinformatics.babraham.ac.uk/projects/fastqc/Help/3%20Analysis%20Modules/" - } - } - }, - "overrepresented_sequences": { - "enum": [ - "FAIL", - "PASS", - "WARN" - ], - "term": { - "description": "State classification given by FASTQC for the metric. Metric specific details about the states are available on their website.\n", - "termDef": { - "cde_id": null, - "cde_version": null, - "source": "FastQC", - "term": "QC Metric State", - "term_url": "http://www.bioinformatics.babraham.ac.uk/projects/fastqc/Help/3%20Analysis%20Modules/" - } - } - }, - "per_base_n_content": { - "enum": [ - "FAIL", - "PASS", - "WARN" - ], - "term": { - "description": "State classification given by FASTQC for the metric. Metric specific details about the states are available on their website.\n", - "termDef": { - "cde_id": null, - "cde_version": null, - "source": "FastQC", - "term": "QC Metric State", - "term_url": "http://www.bioinformatics.babraham.ac.uk/projects/fastqc/Help/3%20Analysis%20Modules/" - } - } - }, - "per_base_sequence_content": { - "enum": [ - "FAIL", - "PASS", - "WARN" - ], - "term": { - "description": "State classification given by FASTQC for the metric. Metric specific details about the states are available on their website.\n", - "termDef": { - "cde_id": null, - "cde_version": null, - "source": "FastQC", - "term": "QC Metric State", - "term_url": "http://www.bioinformatics.babraham.ac.uk/projects/fastqc/Help/3%20Analysis%20Modules/" - } - } - }, - "per_base_sequence_quality": { - "enum": [ - "FAIL", - "PASS", - "WARN" - ], - "term": { - "description": "State classification given by FASTQC for the metric. Metric specific details about the states are available on their website.\n", - "termDef": { - "cde_id": null, - "cde_version": null, - "source": "FastQC", - "term": "QC Metric State", - "term_url": "http://www.bioinformatics.babraham.ac.uk/projects/fastqc/Help/3%20Analysis%20Modules/" - } - } - }, - "per_sequence_gc_content": { - "enum": [ - "FAIL", - "PASS", - "WARN" - ], - "term": { - "description": "State classification given by FASTQC for the metric. Metric specific details about the states are available on their website.\n", - "termDef": { - "cde_id": null, - "cde_version": null, - "source": "FastQC", - "term": "QC Metric State", - "term_url": "http://www.bioinformatics.babraham.ac.uk/projects/fastqc/Help/3%20Analysis%20Modules/" - } - } - }, - "per_sequence_quality_score": { - "enum": [ - "FAIL", - "PASS", - "WARN" - ], - "term": { - "description": "State classification given by FASTQC for the metric. Metric specific details about the states are available on their website.\n", - "termDef": { - "cde_id": null, - "cde_version": null, - "source": "FastQC", - "term": "QC Metric State", - "term_url": "http://www.bioinformatics.babraham.ac.uk/projects/fastqc/Help/3%20Analysis%20Modules/" - } - } - }, - "per_tile_sequence_quality": { - "enum": [ - "FAIL", - "PASS", - "WARN" - ], - "term": { - "description": "State classification given by FASTQC for the metric. Metric specific details about the states are available on their website.\n", - "termDef": { - "cde_id": null, - "cde_version": null, - "source": "FastQC", - "term": "QC Metric State", - "term_url": "http://www.bioinformatics.babraham.ac.uk/projects/fastqc/Help/3%20Analysis%20Modules/" - } - } - }, - "percent_aligned": { - "description": "The percent of reads with at least one reported alignment.", - "maximum": 100, - "minimum": 0, - "type": "integer" - }, - "percent_gc_content": { - "maximum": 100, - "minimum": 0, - "term": { - "description": "The overall %GC of all bases in all sequences.\n", - "termDef": { - "cde_id": null, - "cde_version": null, - "source": "FastQC", - "term": "%GC", - "term_url": "http://www.bioinformatics.babraham.ac.uk/projects/fastqc/Help/3%20Analysis%20Modules/1%20Basic%20Statistics.html" - } - }, - "type": "integer" - }, - "project_id": { - "term": { - "description": "Unique ID for any specific defined piece of work that is undertaken or attempted to meet a single requirement.\n" - }, - "type": "string" - }, - "read_groups": { - "anyOf": [ - { - "items": { - "additionalProperties": true, - "maxItems": 1, - "minItems": 1, - "properties": { - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "submitter_id": { - "type": "string" - } - }, - "type": "object" - }, - "type": "array" - }, - { - "additionalProperties": true, - "properties": { - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "submitter_id": { - "type": "string" - } - }, - "type": "object" - } - ] - }, - "sequence_duplication_levels": { - "enum": [ - "FAIL", - "PASS", - "WARN" - ], - "term": { - "description": "State classification given by FASTQC for the metric. Metric specific details about the states are available on their website.\n", - "termDef": { - "cde_id": null, - "cde_version": null, - "source": "FastQC", - "term": "QC Metric State", - "term_url": "http://www.bioinformatics.babraham.ac.uk/projects/fastqc/Help/3%20Analysis%20Modules/" - } - } - }, - "sequence_length_distribution": { - "enum": [ - "FAIL", - "PASS", - "WARN" - ], - "term": { - "description": "State classification given by FASTQC for the metric. Metric specific details about the states are available on their website.\n", - "termDef": { - "cde_id": null, - "cde_version": null, - "source": "FastQC", - "term": "QC Metric State", - "term_url": "http://www.bioinformatics.babraham.ac.uk/projects/fastqc/Help/3%20Analysis%20Modules/" - } - } - }, - "state": { - "default": "validated", - "downloadable": [ - "uploaded", - "md5summed", - "validating", - "validated", - "error", - "invalid", - "released" - ], - "oneOf": [ - { - "enum": [ - "uploading", - "uploaded", - "md5summing", - "md5summed", - "validating", - "error", - "invalid", - "suppressed", - "redacted", - "live" - ] - }, - { - "enum": [ - "validated", - "submitted", - "released" - ] - } - ], - "public": [ - "live" - ], - "term": { - "description": "The current state of the object.\n" - } - }, - "submitted_aligned_reads_files": { - "anyOf": [ - { - "items": { - "additionalProperties": true, - "maxItems": 1, - "minItems": 1, - "properties": { - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "submitter_id": { - "type": "string" - } - }, - "type": "object" - }, - "type": "array" - }, - { - "additionalProperties": true, - "properties": { - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "submitter_id": { - "type": "string" - } - }, - "type": "object" - } - ] - }, - "submitted_unaligned_reads_files": { - "anyOf": [ - { - "items": { - "additionalProperties": true, - "minItems": 1, - "properties": { - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "submitter_id": { - "type": "string" - } - }, - "type": "object" - }, - "type": "array" - }, - { - "additionalProperties": true, - "properties": { - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "submitter_id": { - "type": "string" - } - }, - "type": "object" - } - ] - }, - "submitter_id": { - "description": "The file ID assigned by the submitter.", - "type": [ - "string", - "null" - ] - }, - "total_aligned_reads": { - "description": "The total number of reads with at least one reported alignment.", - "type": "integer" - }, - "total_sequences": { - "term": { - "description": "A count of the total number of sequences processed.\n", - "termDef": { - "cde_id": null, - "cde_version": null, - "source": "FastQC", - "term": "Total Sequences", - "term_url": "http://www.bioinformatics.babraham.ac.uk/projects/fastqc/Help/3%20Analysis%20Modules/1%20Basic%20Statistics.html" - } - }, - "type": "integer" - }, - "type": { - "enum": [ - "read_group_qc" - ] - }, - "updated_datetime": { - "oneOf": [ - { - "format": "date-time", - "type": "string" - }, - { - "type": "null" - } - ], - "term": { - "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" - } - }, - "workflow_end_datetime": { - "oneOf": [ - { - "format": "date-time", - "type": "string" - }, - { - "type": "null" - } - ], - "term": { - "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" - } - }, - "workflow_link": { - "description": "Link to Github hash for the CWL workflow used.", - "type": "string" - }, - "workflow_start_datetime": { - "oneOf": [ - { - "format": "date-time", - "type": "string" - }, - { - "type": "null" - } - ], - "term": { - "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" - } - }, - "workflow_type": { - "enum": [ - "Read Group Quality Control" - ], - "term": { - "description": "Generic name for the workflow used to analyze a data set.\n" - } - }, - "workflow_version": { - "description": "Major version for a GDC workflow.", - "type": "string" - } - }, - "required": [ - "submitter_id", - "workflow_link", - "type", - "percent_gc_content", - "encoding", - "total_sequences", - "basic_statistics", - "per_base_sequence_quality", - "per_tile_sequence_quality", - "per_sequence_quality_score", - "per_base_sequence_content", - "per_sequence_gc_content", - "per_base_n_content", - "sequence_length_distribution", - "sequence_duplication_levels", - "overrepresented_sequences", - "adapter_content", - "kmer_content", - "read_groups" - ], - "submittable": false, - "systemProperties": [ - "id", - "project_id", - "created_datetime", - "updated_datetime", - "state" - ], - "title": "Read Group QC", - "type": "object", - "uniqueKeys": [ - [ - "id" - ], - [ - "project_id", - "submitter_id" - ] - ], - "validators": null - }, - "root": { - "$schema": "http://json-schema.org/draft-04/schema#", - "additionalProperties": false, - "category": "internal", - "constraints": null, - "id": "root", - "program": "*", - "properties": { - "id": { - "enum": [ - "root" - ] - }, - "schema_version": { - "type": "string" - }, - "type": { - "type": "string" - } - }, - "root": "*", - "submittable": false, - "systemProperties": [ - "id" - ], - "title": "Root", - "type": "object", - "uniqueKeys": [ - [ - "id" - ] - ], - "validators": null - }, - "sample": { - "$schema": "http://json-schema.org/draft-04/schema#", - "additionalProperties": false, - "category": "biospecimen", - "description": "Any material sample taken from a biological entity for testing, diagnostic, propagation, treatment or research purposes, including a sample obtained from a living organism or taken from the biological object after halting of all its life functions. Biospecimen can contain one or more components including but not limited to cellular molecules, cells, tissues, organs, body fluids, embryos, and body excretory products.\n", - "id": "sample", - "links": [ - { - "backref": "samples", - "label": "derived_from", - "multiplicity": "many_to_one", - "name": "cases", - "required": true, - "target_type": "case" - }, - { - "backref": "samples", - "label": "related_to", - "multiplicity": "many_to_one", - "name": "diagnoses", - "required": false, - "target_type": "diagnosis" - } - ], - "namespace": "http://gdc.nci.nih.gov", - "program": "*", - "project": "*", - "properties": { - "biospecimen_anatomic_site": { - "enum": [ - "Abdomen", - "Abdominal Wall", - "Acetabulum", - "Adenoid", - "Adipose", - "Adrenal", - "Alveolar Ridge", - "Amniotic Fluid", - "Ampulla Of Vater", - "Anal Sphincter", - "Ankle", - "Anorectum", - "Antecubital Fossa", - "Antrum", - "Anus", - "Aorta", - "Aortic Body", - "Appendix", - "Aqueous Fluid", - "Arm", - "Artery", - "Ascending Colon", - "Ascending Colon Hepatic Flexure", - "Auditory Canal", - "Autonomic Nervous System", - "Axilla", - "Back", - "Bile Duct", - "Bladder", - "Blood", - "Blood Vessel", - "Bone", - "Bone Marrow", - "Bowel", - "Brain", - "Brain Stem", - "Breast", - "Broad Ligament", - "Bronchiole", - "Bronchus", - "Brow", - "Buccal Cavity", - "Buccal Mucosa", - "Buttock", - "Calf", - "Capillary", - "Cardia", - "Carina", - "Carotid Artery", - "Carotid Body", - "Cartilage", - "Cecum", - "Cell-Line", - "Central Nervous System", - "Cerebellum", - "Cerebral Cortex", - "Cerebrospinal Fluid", - "Cerebrum", - "Cervical Spine", - "Cervix", - "Chest", - "Chest Wall", - "Chin", - "Clavicle", - "Clitoris", - "Colon", - "Colon - Mucosa Only", - "Common Duct", - "Conjunctiva", - "Connective Tissue", - "Dermal", - "Descending Colon", - "Diaphragm", - "Duodenum", - "Ear", - "Ear Canal", - "Ear, Pinna (External)", - "Effusion", - "Elbow", - "Endocrine Gland", - "Epididymis", - "Epidural Space", - "Esophagogastric Junction", - "Esophagus", - "Esophagus - Mucosa Only", - "Eye", - "Fallopian Tube", - "Femoral Artery", - "Femoral Vein", - "Femur", - "Fibroblasts", - "Fibula", - "Finger", - "Floor Of Mouth", - "Fluid", - "Foot", - "Forearm", - "Forehead", - "Foreskin", - "Frontal Cortex", - "Frontal Lobe", - "Fundus Of Stomach", - "Gallbladder", - "Ganglia", - "Gastroesophageal Junction", - "Gastrointestinal Tract", - "Groin", - "Gum", - "Hand", - "Hard Palate", - "Head & Neck", - "Head - Face Or Neck, Nos", - "Heart", - "Hepatic", - "Hepatic Duct", - "Hepatic Vein", - "Hip", - "Hippocampus", - "Humerus", - "Hypopharynx", - "Ileum", - "Ilium", - "Index Finger", - "Ischium", - "Islet Cells", - "Jaw", - "Jejunum", - "Joint", - "Kidney", - "Knee", - "Lacrimal Gland", - "Large Bowel", - "Laryngopharynx", - "Larynx", - "Leg", - "Leptomeninges", - "Ligament", - "Lip", - "Liver", - "Lumbar Spine", - "Lung", - "Lymph Node", - "Lymph Node(s) Axilla", - "Lymph Node(s) Cervical", - "Lymph Node(s) Distant", - "Lymph Node(s) Epitrochlear", - "Lymph Node(s) Femoral", - "Lymph Node(s) Hilar", - "Lymph Node(s) Iliac-Common", - "Lymph Node(s) Iliac-External", - "Lymph Node(s) Inguinal", - "Lymph Node(s) Internal Mammary", - "Lymph Node(s) Mammary", - "Lymph Node(s) Mesenteric", - "Lymph Node(s) Occipital", - "Lymph Node(s) Paraaortic", - "Lymph Node(s) Parotid", - "Lymph Node(s) Pelvic", - "Lymph Node(s) Popliteal", - "Lymph Node(s) Regional", - "Lymph Node(s) Retroperitoneal", - "Lymph Node(s) Scalene", - "Lymph Node(s) Splenic", - "Lymph Node(s) Subclavicular", - "Lymph Node(s) Submandibular", - "Lymph Node(s) Supraclavicular", - "Lymph Nodes(s) Mediastinal", - "Mandible", - "Maxilla", - "Mediastinal Soft Tissue", - "Mediastinum", - "Mesentery", - "Mesothelium", - "Middle Finger", - "Mitochondria", - "Muscle", - "Nails", - "Nasal Cavity", - "Nasal Soft Tissue", - "Nasopharynx", - "Neck", - "Nerve", - "Nerve(s) Cranial", - "Occipital Cortex", - "Ocular Orbits", - "Omentum", - "Oral Cavity", - "Oral Cavity - Mucosa Only", - "Oropharynx", - "Other", - "Ovary", - "Palate", - "Pancreas", - "Paraspinal Ganglion", - "Parathyroid", - "Parotid Gland", - "Patella", - "Pelvis", - "Penis", - "Pericardium", - "Periorbital Soft Tissue", - "Peritoneal Cavity", - "Peritoneum", - "Pharynx", - "Pineal", - "Pineal Gland", - "Pituitary Gland", - "Placenta", - "Pleura", - "Popliteal Fossa", - "Prostate", - "Pylorus", - "Rectosigmoid Junction", - "Rectum", - "Retina", - "Retro-Orbital Region", - "Retroperitoneum", - "Rib", - "Ring Finger", - "Round Ligament", - "Sacrum", - "Salivary Gland", - "Scalp", - "Scapula", - "Sciatic Nerve", - "Scrotum", - "Seminal Vesicle", - "Shoulder", - "Sigmoid Colon", - "Sinus", - "Sinus(es), Maxillary", - "Skeletal Muscle", - "Skin", - "Skull", - "Small Bowel", - "Small Bowel - Mucosa Only", - "Small Finger", - "Soft Tissue", - "Spinal Column", - "Spinal Cord", - "Spleen", - "Splenic Flexure", - "Sternum", - "Stomach", - "Stomach - Mucosa Only", - "Subcutaneous Tissue", - "Synovium", - "Temporal Cortex", - "Tendon", - "Testis", - "Thigh", - "Thoracic Spine", - "Thorax", - "Throat", - "Thumb", - "Thymus", - "Thyroid", - "Tibia", - "Tongue", - "Tonsil", - "Tonsil (Pharyngeal)", - "Trachea / Major Bronchi", - "Transverse Colon", - "Trunk", - "Umbilical Cord", - "Ureter", - "Urethra", - "Urinary Tract", - "Uterus", - "Uvula", - "Vagina", - "Vas Deferens", - "Vein", - "Venous", - "Vertebra", - "Vulva", - "White Blood Cells", - "Wrist", - "Unknown", - "Not Reported", - "Not Allowed To Collect" - ], - "term": { - "description": "Text term that represents the name of the primary disease site of the submitted tumor sample.\n", - "termDef": { - "cde_id": 4742851, - "cde_version": 1, - "source": "caDSR", - "term": "Submitted Tumor Sample Primary Anatomic Site", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=4742851&version=1.0" - } - } - }, - "cases": { - "anyOf": [ - { - "items": { - "additionalProperties": true, - "maxItems": 1, - "minItems": 1, - "properties": { - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "submitter_id": { - "type": "string" - } - }, - "type": "object" - }, - "type": "array" - }, - { - "additionalProperties": true, - "properties": { - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "submitter_id": { - "type": "string" - } - }, - "type": "object" - } - ] - }, - "composition": { - "enum": [ - "Buccal Cells", - "Buffy Coat", - "Bone Marrow Components", - "Bone Marrow Components NOS", - "Control Analyte", - "Cell", - "Circulating Tumor Cell (CTC)", - "Derived Cell Line", - "EBV Immortalized", - "Fibroblasts from Bone Marrow Normal", - "Granulocytes", - "Human Original Cells", - "Lymphocytes", - "Mononuclear Cells from Bone Marrow Normal", - "Peripheral Blood Components NOS", - "Peripheral Blood Nucleated Cells", - "Pleural Effusion", - "Plasma", - "Peripheral Whole Blood", - "Serum", - "Saliva", - "Sputum", - "Solid Tissue", - "Whole Bone Marrow", - "Unknown", - "Not Reported", - "Not Allowed To Collect" - ], - "term": { - "description": "Text term that represents the cellular composition of the sample.\n", - "termDef": { - "cde_id": 5432591, - "cde_version": 1, - "source": "caDSR", - "term": "Biospecimen Cellular Composition Type", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=5432591&version=1.0" - } - } - }, - "created_datetime": { - "oneOf": [ - { - "format": "date-time", - "type": "string" - }, - { - "type": "null" - } - ], - "term": { - "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" - } - }, - "current_weight": { - "term": { - "description": "Numeric value that represents the current weight of the sample, measured in milligrams.\n", - "termDef": { - "cde_id": 5432606, - "cde_version": 1, - "source": "caDSR", - "term": "Tissue Sample Current Weight Milligram Value", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=5432606&version=1.0" - } - }, - "type": "number" - }, - "days_to_collection": { - "term": { - "description": "Time interval from the date of biospecimen collection to the date of initial pathologic diagnosis, represented as a calculated number of days.\n", - "termDef": { - "cde_id": 3008340, - "cde_version": 1, - "source": "caDSR", - "term": "Biospecimen Collection Date Less Initial Pathologic Diagnosis Date Calculated Day Value", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3008340&version=1.0" - } - }, - "type": "integer" - }, - "days_to_sample_procurement": { - "term": { - "description": "The number of days from the date the patient was diagnosed to the date of the procedure that produced the sample.\n" - }, - "type": "integer" - }, - "diagnoses": { - "anyOf": [ - { - "items": { - "additionalProperties": true, - "maxItems": 1, - "minItems": 1, - "properties": { - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "submitter_id": { - "type": "string" - } - }, - "type": "object" - }, - "type": "array" - }, - { - "additionalProperties": true, - "properties": { - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "submitter_id": { - "type": "string" - } - }, - "type": "object" - } - ] - }, - "diagnosis_pathologically_confirmed": { - "enum": [ - "Yes", - "No", - "Unknown" - ], - "term": { - "ref": "_terms.yaml#/diagnosis_pathologically_confirmed" - } - }, - "freezing_method": { - "term": { - "description": "Text term that represents the method used for freezing the sample.\n", - "termDef": { - "cde_id": 5432607, - "cde_version": 1, - "source": "caDSR", - "term": "Tissue Sample Freezing Method Type", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=5432607&version=1.0" - } - }, - "type": "string" - }, - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "systemAlias": "node_id", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "initial_weight": { - "term": { - "description": "Numeric value that represents the initial weight of the sample, measured in milligrams.\n", - "termDef": { - "cde_id": 5432605, - "cde_version": 1, - "source": "caDSR", - "term": "Tissue Sample Initial Weight Milligram Value", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=5432605&version=1.0" - } - }, - "type": "number" - }, - "intermediate_dimension": { - "terms": { - "description": "Intermediate dimension of the sample, in millimeters.\n" - }, - "type": "string" - }, - "is_ffpe": { - "term": { - "description": "Indicator to signify whether or not the tissue sample was fixed in formalin and embedded in paraffin (FFPE).\n", - "termDef": { - "cde_id": 4170557, - "cde_version": 1, - "source": "caDSR", - "term": "Specimen Processing Formalin Fixed Paraffin Embedded Tissue Indicator", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=4170557&version=1.0" - } - }, - "type": "boolean" - }, - "longest_dimension": { - "terms": { - "description": "Numeric value that represents the longest dimension of the sample, measured in millimeters.\n", - "termDef": { - "cde_id": 5432602, - "cde_version": 1, - "source": "caDSR", - "term": "Tissue Sample Longest Dimension Millimeter Measurement", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=5432602&version=1.0" - } - }, - "type": "string" - }, - "method_of_sample_procurement": { - "enum": [ - "Abdomino-perineal Resection of Rectum", - "Anterior Resection of Rectum", - "Aspirate", - "Biopsy", - "Blood Draw", - "Bone Marrow Aspirate", - "Core Biopsy", - "Cystectomy", - "Endo Rectal Tumor Resection", - "Endoscopic Biopsy", - "Endoscopic Mucosal Resection (EMR)", - "Enucleation", - "Excisional Biopsy", - "Fine Needle Aspiration", - "Full Hysterectomy", - "Gross Total Resection", - "Hand Assisted Laparoscopic Radical Nephrectomy", - "Hysterectomy NOS", - "Incisional Biopsy", - "Indeterminant", - "Laparoscopic Biopsy", - "Laparoscopic Partial Nephrectomy", - "Laparoscopic Radical Nephrectomy", - "Laparoscopic Radical Prostatectomy with Robotics", - "Laparoscopic Radical Prostatectomy without Robotics", - "Left Hemicolectomy", - "Lobectomy", - "Local Resection (Exoresection; wall resection)", - "Lumpectomy", - "Modified Radical Mastectomy", - "Needle Biopsy", - "Open Craniotomy", - "Open Partial Nephrectomy", - "Open Radical Nephrectomy", - "Open Radical Prostatectomy", - "Orchiectomy", - "Other", - "Other Surgical Resection", - "Pan-Procto Colectomy", - "Pneumonectomy", - "Right Hemicolectomy", - "Sigmoid Colectomy", - "Simple Mastectomy", - "Subtotal Resection", - "Surgical Resection", - "Thoracoscopic Biopsy", - "Total Colectomy", - "Total Mastectomy", - "Transplant", - "Transurethral resection (TURBT)", - "Transverse Colectomy", - "Tumor Resection", - "Wedge Resection", - "Unknown", - "Not Reported", - "Not Allowed To Collect" - ], - "term": { - "description": "The method used to procure the sample used to extract analyte(s).\n", - "termDef": { - "cde_id": null, - "cde_version": null, - "source": null, - "term": "Method of Sample Procurement", - "term_url": null - } - } - }, - "oct_embedded": { - "term": { - "description": "Indicator of whether or not the sample was embedded in Optimal Cutting Temperature (OCT) compound.\n", - "termDef": { - "cde_id": 5432538, - "cde_version": 1, - "source": "caDSR", - "term": "Tissue Sample Optimal Cutting Temperature Compound Embedding Indicator", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=5432538&version=1.0" - } - }, - "type": "string" - }, - "preservation_method": { - "enum": [ - "Cryopreserved", - "FFPE", - "Fresh", - "OCT", - "Snap Frozen", - "Frozen", - "Unknown", - "Not Reported", - "Not Allowed To Collect" - ], - "term": { - "description": "Text term that represents the method used to preserve the sample.\n", - "termDef": { - "cde_id": 5432521, - "cde_version": 1, - "source": "caDSR", - "term": "Tissue Sample Preservation Method Type", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=5432521&version=1.0" - } - } - }, - "project_id": { - "type": "string" - }, - "sample_type": { - "description": "Characterization of the sample as either clinical or contrived.", - "enum": [ - "Additional Metastatic", - "Additional - New Primary", - "Blood Derived Cancer - Bone Marrow, Post-treatment", - "Blood Derived Cancer - Peripheral Blood, Post-treatment", - "Blood Derived Normal", - "Bone Marrow Normal", - "Buccal Cell Normal", - "Cell Line Derived Xenograft Tissue", - "Cell Lines", - "cfDNA", - "Circulating Tumor Cell (CTC)", - "Control Analyte", - "Clinical", - "Contrived", - "ctDNA", - "DNA", - "EBV Immortalized Normal", - "FFPE Recurrent", - "FFPE Scrolls", - "Fibroblasts from Bone Marrow Normal", - "GenomePlex (Rubicon) Amplified DNA", - "Granulocytes", - "Human Tumor Original Cells", - "Metastatic", - "Mononuclear Cells from Bone Marrow Normal", - "Primary Blood Derived Cancer - Peripheral Blood", - "Recurrent Blood Derived Cancer - Peripheral Blood", - "Pleural Effusion", - "Primary Blood Derived Cancer - Bone Marrow", - "Primary Tumor", - "Primary Xenograft Tissue", - "Post neo-adjuvant therapy", - "Recurrent Blood Derived Cancer - Bone Marrow", - "Recurrent Tumor", - "Repli-G (Qiagen) DNA", - "Repli-G X (Qiagen) DNA", - "RNA", - "Slides", - "Solid Tissue Normal", - "Total RNA", - "Xenograft Tissue", - "Unknown", - "Not Reported", - "Not Allowed To Collect" - ] - }, - "sample_type_id": { - "enum": [ - "01", - "02", - "03", - "04", - "05", - "06", - "07", - "08", - "09", - "10", - "11", - "12", - "13", - "14", - "15", - "16", - "20", - "40", - "41", - "42", - "50", - "60", - "61", - "99" - ], - "term": { - "description": "The accompanying sample type id for the sample type.\n" - } - }, - "sample_volume": { - "description": "The volume of the sample in mL.", - "type": "number" - }, - "shortest_dimension": { - "term": { - "description": "Numeric value that represents the shortest dimension of the sample, measured in millimeters.\n", - "termDef": { - "cde_id": 5432603, - "cde_version": 1, - "source": "caDSR", - "term": "Tissue Sample Short Dimension Millimeter Measurement", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=5432603&version=1.0" - } - }, - "type": "string" - }, - "state": { - "default": "validated", - "downloadable": [ - "uploaded", - "md5summed", - "validating", - "validated", - "error", - "invalid", - "released" - ], - "oneOf": [ - { - "enum": [ - "uploading", - "uploaded", - "md5summing", - "md5summed", - "validating", - "error", - "invalid", - "suppressed", - "redacted", - "live" - ] - }, - { - "enum": [ - "validated", - "submitted", - "released" - ] - } - ], - "public": [ - "live" - ], - "term": { - "description": "The current state of the object.\n" - } - }, - "submitter_id": { - "description": "The legacy barcode used before prior to the use UUIDs, varies by project. For TCGA this is bcrsamplebarcode.\n", - "type": [ - "string", - "null" - ] - }, - "time_between_clamping_and_freezing": { - "term": { - "description": "Numeric representation of the elapsed time between the surgical clamping of blood supply and freezing of the sample, measured in minutes.\n", - "termDef": { - "cde_id": 5432611, - "cde_version": 1, - "source": "caDSR", - "term": "Tissue Sample Clamping and Freezing Elapsed Minute Time", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=5432611&version=1.0" - } - }, - "type": "string" - }, - "time_between_excision_and_freezing": { - "term": { - "description": "Numeric representation of the elapsed time between the excision and freezing of the sample, measured in minutes.\n", - "termDef": { - "cde_id": 5432612, - "cde_version": 1, - "source": "caDSR", - "term": "Tissue Sample Excision and Freezing Elapsed Minute Time", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=5432612&version=1.0" - } - }, - "type": "string" - }, - "tissue_type": { - "enum": [ - "Tumor", - "Normal", - "Abnormal", - "Peritumoral", - "Contrived", - "Unknown", - "Not Reported", - "Not Allowed To Collect" - ], - "term": { - "description": "Text term that represents a description of the kind of tissue collected with respect to disease status or proximity to tumor tissue.\n", - "termDef": { - "cde_id": 5432687, - "cde_version": 1, - "source": "caDSR", - "term": "Tissue Sample Description Type", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=5432687&version=1.0" - } - } - }, - "tumor_code": { - "enum": [ - "Non cancerous tissue", - "Diffuse Large B-Cell Lymphoma (DLBCL)", - "Lung Cancer (all types)", - "Lung Adenocarcinoma", - "Non-small Cell Lung Carcinoma (NSCLC)", - "Colon Cancer (all types)", - "Breast Cancer (all types)", - "Cervical Cancer (all types)", - "Anal Cancer (all types)", - "Acute lymphoblastic leukemia (ALL)", - "Acute myeloid leukemia (AML)", - "Induction Failure AML (AML-IF)", - "Neuroblastoma (NBL)", - "Osteosarcoma (OS)", - "Ewing sarcoma", - "Wilms tumor (WT)", - "Clear cell sarcoma of the kidney (CCSK)", - "Rhabdoid tumor (kidney) (RT)", - "CNS, ependymoma", - "CNS, glioblastoma (GBM)", - "CNS, rhabdoid tumor", - "CNS, low grade glioma (LGG)", - "CNS, medulloblastoma", - "CNS, other", - "NHL, anaplastic large cell lymphoma", - "NHL, Burkitt lymphoma (BL)", - "Rhabdomyosarcoma", - "Soft tissue sarcoma, non-rhabdomyosarcoma", - "Castration-Resistant Prostate Cancer (CRPC)", - "Prostate Cancer", - "Hepatocellular Carcinoma (HCC)" - ], - "term": { - "description": "Diagnostic tumor code of the tissue sample source.\n" - } - }, - "tumor_code_id": { - "enum": [ - "00", - "01", - "02", - "03", - "04", - "10", - "20", - "21", - "30", - "40", - "41", - "50", - "51", - "52", - "60", - "61", - "62", - "63", - "64", - "65", - "70", - "71", - "80", - "81" - ], - "term": { - "description": "BCR-defined id code for the tumor sample.\n" - } - }, - "tumor_descriptor": { - "description": "A description of the tumor from which the sample was derived.", - "enum": [ - "Metastatic", - "Not Applicable", - "Primary", - "Recurrence", - "Xenograft", - "NOS", - "Unknown", - "Not Reported", - "Not Allowed To Collect" - ], - "term": { - "description": "Text that describes the kind of disease present in the tumor specimen as related to a specific timepoint.\n", - "termDef": { - "cde_id": 3288124, - "cde_version": 1, - "source": "caDSR", - "term": "Tumor Tissue Disease Description Type", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3288124&version=1.0" - } - } - }, - "type": { - "type": "string" - }, - "updated_datetime": { - "oneOf": [ - { - "format": "date-time", - "type": "string" - }, - { - "type": "null" - } - ], - "term": { - "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" - } - } - }, - "required": [ - "submitter_id", - "cases" - ], - "submittable": true, - "systemProperties": [ - "id", - "project_id", - "state", - "created_datetime", - "updated_datetime" - ], - "title": "Sample", - "type": "object", - "uniqueKeys": [ - [ - "id" - ], - [ - "project_id", - "submitter_id" - ] - ], - "validators": null - }, - "slide": { - "$schema": "http://json-schema.org/draft-04/schema#", - "additionalProperties": false, - "category": "biospecimen", - "description": "A digital image, microscopic or otherwise, of any sample, portion, or sub-part thereof. (GDC)\n", - "id": "slide", - "links": [ - { - "backref": "slides", - "label": "derived_from", - "multiplicity": "many_to_many", - "name": "samples", - "required": true, - "target_type": "sample" - } - ], - "namespace": "http://gdc.nci.nih.gov", - "program": "*", - "project": "*", - "properties": { - "apoptotic_concentration": { - "description": "The concentration, in cells/mL, of apoptotic cells in the slide blood.", - "type": "number" - }, - "created_datetime": { - "oneOf": [ - { - "format": "date-time", - "type": "string" - }, - { - "type": "null" - } - ], - "term": { - "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" - } - }, - "ctc_concentration": { - "description": "The concentration, in cells/mL, of traditional CTC cells (intact and enlarged cell and nucleus, cytokeratin positive, and CD45 negative) in the slide blood.", - "type": "number" - }, - "ctc_low_concentration": { - "description": "The concentration, in cells/mL, of CTC-low cells (those with low cytokeratin levels compared to traditional CTCs) in the slide blood.", - "type": "number" - }, - "ctc_small_concentration": { - "description": "The concentration, in cells/mL, of CTC-small cells (those with a small nuclear and cellular size relative to traditional CTCs) in the slide blood.", - "type": "number" - }, - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "systemAlias": "node_id", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "methanol_added": { - "description": "True/False indicator for if methanol was used in the slide preparation process.", - "type": "boolean" - }, - "number_nucleated_cells": { - "description": "The total number of nucleated cells identified on the slide.", - "type": "integer" - }, - "number_proliferating_cells": { - "term": { - "description": "Numeric value that represents the count of proliferating cells determined during pathologic review of the sample slide(s).\n", - "termDef": { - "cde_id": 5432636, - "cde_version": 1, - "source": "caDSR", - "term": "Pathology Review Slide Proliferating Cell Count", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=5432636&version=1.0" - } - }, - "type": "integer" - }, - "percent_eosinophil_infiltration": { - "term": { - "description": "Numeric value to represent the percentage of infiltration by eosinophils in a tumor sample or specimen.\n", - "termDef": { - "cde_id": 2897700, - "cde_version": 2, - "source": "caDSR", - "term": "Specimen Eosinophilia Percentage Value", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2897700&version=2.0" - } - }, - "type": "number" - }, - "percent_granulocyte_infiltration": { - "term": { - "description": "Numeric value to represent the percentage of infiltration by granulocytes in a tumor sample or specimen.\n", - "termDef": { - "cde_id": 2897705, - "cde_version": 2, - "source": "caDSR", - "term": "Specimen Granulocyte Infiltration Percentage Value", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2897705&version=2.0" - } - }, - "type": "number" - }, - "percent_inflam_infiltration": { - "term": { - "description": "Numeric value to represent local response to cellular injury, marked by capillary dilatation, edema and leukocyte infiltration; clinically, inflammation is manifest by reddness, heat, pain, swelling and loss of function, with the need to heal damaged tissue.\n", - "termDef": { - "cde_id": 2897695, - "cde_version": 1, - "source": "caDSR", - "term": "Specimen Inflammation Change Percentage Value", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2897695&version=1.0" - } - }, - "type": "number" - }, - "percent_lymphocyte_infiltration": { - "term": { - "description": "Numeric value to represent the percentage of infiltration by lymphocytes in a solid tissue normal sample or specimen.\n", - "termDef": { - "cde_id": 2897710, - "cde_version": 2, - "source": "caDSR", - "term": "Specimen Lymphocyte Infiltration Percentage Value", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2897710&version=2.0" - } - }, - "type": "number" - }, - "percent_monocyte_infiltration": { - "term": { - "description": "Numeric value to represent the percentage of monocyte infiltration in a sample or specimen.\n", - "termDef": { - "cde_id": 5455535, - "cde_version": 1, - "source": "caDSR", - "term": "Specimen Monocyte Infiltration Percentage Value", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=5455535&version=1.0" - } - }, - "type": "number" - }, - "percent_necrosis": { - "term": { - "description": "Numeric value to represent the percentage of cell death in a malignant tumor sample or specimen.\n", - "termDef": { - "cde_id": 2841237, - "cde_version": 1, - "source": "caDSR", - "term": "Malignant Neoplasm Necrosis Percentage Value", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2841237&version=1.0" - } - }, - "type": "number" - }, - "percent_neutrophil_infiltration": { - "term": { - "description": "Numeric value to represent the percentage of infiltration by neutrophils in a tumor sample or specimen.\n", - "termDef": { - "cde_id": 2841267, - "cde_version": 1, - "source": "caDSR", - "term": "Malignant Neoplasm Neutrophil Infiltration Percentage Cell Value", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2841267&version=1.0" - } - }, - "type": "number" - }, - "percent_normal_cells": { - "term": { - "description": "Numeric value to represent the percentage of normal cell content in a malignant tumor sample or specimen.\n", - "termDef": { - "cde_id": 2841233, - "cde_version": 1, - "source": "caDSR", - "term": "Malignant Neoplasm Normal Cell Percentage Value", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2841233&version=1.0" - } - }, - "type": "number" - }, - "percent_stromal_cells": { - "term": { - "description": "Numeric value to represent the percentage of reactive cells that are present in a malignant tumor sample or specimen but are not malignant such as fibroblasts, vascular structures, etc.\n", - "termDef": { - "cde_id": 2841241, - "cde_version": 1, - "source": "caDSR", - "term": "Malignant Neoplasm Stromal Cell Percentage Value", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2841241&version=1.0" - } - }, - "type": "number" - }, - "percent_tumor_cells": { - "term": { - "description": "Numeric value that represents the percentage of infiltration by granulocytes in a sample.\n", - "termDef": { - "cde_id": 5432686, - "cde_version": 1, - "source": "caDSR", - "term": "Specimen Tumor Cell Percentage Value", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=5432686&version=1.0" - } - }, - "type": "number" - }, - "percent_tumor_nuclei": { - "term": { - "description": "Numeric value to represent the percentage of tumor nuclei in a malignant neoplasm sample or specimen.\n", - "termDef": { - "cde_id": 2841225, - "cde_version": 1, - "source": "caDSR", - "term": "Malignant Neoplasm Neoplasm Nucleus Percentage Cell Value", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2841225&version=1.0" - } - }, - "type": "number" - }, - "project_id": { - "term": { - "description": "Unique ID for any specific defined piece of work that is undertaken or attempted to meet a single requirement.\n" - }, - "type": "string" - }, - "run_datetime": { - "oneOf": [ - { - "format": "date-time", - "type": "string" - }, - { - "type": "null" - } - ], - "term": { - "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" - } - }, - "run_name": { - "description": "Name, number, or other identifier given to this slide's run.", - "type": "string" - }, - "samples": { - "anyOf": [ - { - "items": { - "additionalProperties": true, - "minItems": 1, - "properties": { - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "submitter_id": { - "type": "string" - } - }, - "type": "object" - }, - "type": "array" - }, - { - "additionalProperties": true, - "properties": { - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "submitter_id": { - "type": "string" - } - }, - "type": "object" - } - ] - }, - "section_location": { - "term": { - "description": "Tissue source of the slide.\n" - }, - "type": "string" - }, - "slide_identifier": { - "description": "Unique identifier given to the this slide.", - "type": "string" - }, - "state": { - "default": "validated", - "downloadable": [ - "uploaded", - "md5summed", - "validating", - "validated", - "error", - "invalid", - "released" - ], - "oneOf": [ - { - "enum": [ - "uploading", - "uploaded", - "md5summing", - "md5summed", - "validating", - "error", - "invalid", - "suppressed", - "redacted", - "live" - ] - }, - { - "enum": [ - "validated", - "submitted", - "released" - ] - } - ], - "public": [ - "live" - ], - "term": { - "description": "The current state of the object.\n" - } - }, - "submitter_id": { - "type": [ - "string", - "null" - ] - }, - "type": { - "type": "string" - }, - "updated_datetime": { - "oneOf": [ - { - "format": "date-time", - "type": "string" - }, - { - "type": "null" - } - ], - "term": { - "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" - } - } - }, - "required": [ - "submitter_id", - "samples" - ], - "submittable": true, - "systemProperties": [ - "id", - "project_id", - "state", - "created_datetime", - "updated_datetime" - ], - "title": "Slide", - "type": "object", - "uniqueKeys": [ - [ - "id" - ], - [ - "project_id", - "submitter_id" - ] - ], - "validators": null - }, - "slide_count": { - "$schema": "http://json-schema.org/draft-04/schema#", - "additionalProperties": false, - "category": "notation", - "description": "Information pertaining to processed results obtained from slides; often in the form of counts.\n", - "id": "slide_count", - "links": [ - { - "backref": "slide_counts", - "label": "data_from", - "multiplicity": "many_to_many", - "name": "slides", - "required": true, - "target_type": "slide" - } - ], - "namespace": "http://gdc.nci.nih.gov", - "program": "*", - "project": "*", - "properties": { - "biomarker_signal": { - "description": "Numeric quantification of the biomarker signal.", - "type": "number" - }, - "cell_count": { - "description": "Raw count of a particular cell type.", - "type": "integer" - }, - "cell_identifier": { - "description": "An alternative identifier for a given cell type.", - "type": "string" - }, - "cell_type": { - "description": "The type of cell being counted or measured.", - "type": "string" - }, - "ck_signal": { - "description": "Numeric quantification of the CK signal.", - "type": "number" - }, - "created_datetime": { - "oneOf": [ - { - "format": "date-time", - "type": "string" - }, - { - "type": "null" - } - ], - "term": { - "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" - } - }, - "er_localization": { - "description": "Cellular localization of the endoplasmic reticulum as determined by staining.", - "enum": [ - "Nuclear", - "Cytoplasmic", - "Both", - "None", - "Not Determined" - ] - }, - "frame_identifier": { - "description": "Name, number, or other identifier given to the frame of the slide from which this image was taken.", - "type": "string" - }, - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "systemAlias": "node_id", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "project_id": { - "type": "string" - }, - "relative_cytokeratin_intensity": { - "description": "The ratio of the single cell's cytokeratin staining intensity to the average of the surrounding cells.", - "type": "number" - }, - "relative_er_intensity": { - "description": "The ratio of the single cell's endoplasmic reticulum staining intensity to the average of the surrounding cells.", - "type": "number" - }, - "relative_nuclear_intensity": { - "description": "The ratio of the single cell's nuclear staining intensity to the average of the surrounding cells.", - "type": "number" - }, - "relative_nuclear_size": { - "description": "The ratio of the single cell's nucleus size to the average of the surrounding cells.", - "type": "number" - }, - "run_name": { - "description": "The name or identifier given to the run that was used to generate this slide count.", - "type": "string" - }, - "slides": { - "anyOf": [ - { - "items": { - "additionalProperties": true, - "minItems": 1, - "properties": { - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "submitter_id": { - "type": "string" - } - }, - "type": "object" - }, - "type": "array" - }, - { - "additionalProperties": true, - "properties": { - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "submitter_id": { - "type": "string" - } - }, - "type": "object" - } - ] - }, - "state": { - "default": "validated", - "downloadable": [ - "uploaded", - "md5summed", - "validating", - "validated", - "error", - "invalid", - "released" - ], - "oneOf": [ - { - "enum": [ - "uploading", - "uploaded", - "md5summing", - "md5summed", - "validating", - "error", - "invalid", - "suppressed", - "redacted", - "live" - ] - }, - { - "enum": [ - "validated", - "submitted", - "released" - ] - } - ], - "public": [ - "live" - ], - "term": { - "description": "The current state of the object.\n" - } - }, - "submitter_id": { - "type": [ - "string", - "null" - ] - }, - "type": { - "enum": [ - "slide_count" - ] - }, - "updated_datetime": { - "oneOf": [ - { - "format": "date-time", - "type": "string" - }, - { - "type": "null" - } - ], - "term": { - "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" - } - } - }, - "required": [ - "submitter_id", - "slides" - ], - "submittable": true, - "systemProperties": [ - "id", - "project_id", - "created_datetime", - "updated_datetime", - "state" - ], - "title": "Slide Count", - "type": "object", - "uniqueKeys": [ - [ - "id" - ], - [ - "project_id", - "submitter_id" - ] - ], - "validators": null - }, - "slide_image": { - "$schema": "http://json-schema.org/draft-04/schema#", - "additionalProperties": false, - "category": "data_file", - "description": "Data file containing image of a slide.\n", - "id": "slide_image", - "links": [ - { - "backref": "slide_images", - "label": "data_from", - "multiplicity": "many_to_one", - "name": "slides", - "required": true, - "target_type": "slide" - }, - { - "backref": "slide_images", - "label": "data_from", - "multiplicity": "many_to_many", - "name": "core_metadata_collections", - "required": false, - "target_type": "core_metadata_collection" - } - ], - "namespace": "http://gdc.nci.nih.gov", - "program": "*", - "project": "*", - "properties": { - "cell_count": { - "description": "Count of the cell type being imaged or otherwise analysed.", - "type": "integer" - }, - "cell_identifier": { - "description": "An alternative identifier for a given cell type.", - "type": "string" - }, - "cell_type": { - "description": "The type of cell being imaged or otherwised analysed.", - "type": "string" - }, - "core_metadata_collections": { - "anyOf": [ - { - "items": { - "additionalProperties": true, - "minItems": 1, - "properties": { - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "submitter_id": { - "type": "string" - } - }, - "type": "object" - }, - "type": "array" - }, - { - "additionalProperties": true, - "properties": { - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "submitter_id": { - "type": "string" - } - }, - "type": "object" - } - ] - }, - "created_datetime": { - "oneOf": [ - { - "format": "date-time", - "type": "string" - }, - { - "type": "null" - } - ], - "term": { - "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" - } - }, - "data_category": { - "enum": [ - "Biospecimen", - "Slide Image", - "Mass Cytometry" - ], - "term": { - "description": "Broad categorization of the contents of the data file.\n" - } - }, - "data_format": { - "term": { - "description": "Format of the data files.\n" - }, - "type": "string" - }, - "data_type": { - "enum": [ - "image", - "Single Cell Image", - "Raw IMC Data", - "Single Channel IMC Image", - "Antibody Panel Added" - ], - "term": { - "description": "Specific content type of the data file.\n" - } - }, - "error_type": { - "enum": [ - "file_size", - "file_format", - "md5sum" - ], - "term": { - "description": "Type of error for the data file object.\n" - } - }, - "experimental_strategy": { - "description": "Classification of the slide type with respect to its experimental use.", - "enum": [ - "Diagnostic Slide", - "Tissue Slide" - ] - }, - "file_name": { - "term": { - "description": "The name (or part of a name) of a file (of any type).\n" - }, - "type": "string" - }, - "file_size": { - "term": { - "description": "The size of the data file (object) in bytes.\n" - }, - "type": "integer" - }, - "file_state": { - "default": "registered", - "enum": [ - "registered", - "uploading", - "uploaded", - "validating", - "validated", - "submitted", - "processing", - "processed", - "released", - "error" - ], - "term": { - "description": "The current state of the data file object.\n" - } - }, - "frame_identifier": { - "description": "Name, number, or other identifier given to the frame of the slide from which this image was taken.", - "type": "string" - }, - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "systemAlias": "node_id", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "md5sum": { - "pattern": "^[a-f0-9]{32}$", - "term": { - "description": "The 128-bit hash value expressed as a 32 digit hexadecimal number used as a file's digital fingerprint.\n" - }, - "type": "string" - }, - "object_id": { - "description": "The GUID of the object in the index service.", - "type": "string" - }, - "panel_used": { - "description": "Name or other identifier given to the panel used during an IMC run.", - "type": "string" - }, - "project_id": { - "term": { - "description": "Unique ID for any specific defined piece of work that is undertaken or attempted to meet a single requirement.\n" - }, - "type": "string" - }, - "protocol_used": { - "description": "Name or other identifier given to the protocol used during an IMC run.", - "type": "string" - }, - "run_name": { - "description": "Name, number, or other identifier given to the run that generated this slide image.", - "type": "string" - }, - "slides": { - "anyOf": [ - { - "items": { - "additionalProperties": true, - "maxItems": 1, - "minItems": 1, - "properties": { - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "submitter_id": { - "type": "string" - } - }, - "type": "object" - }, - "type": "array" - }, - { - "additionalProperties": true, - "properties": { - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "submitter_id": { - "type": "string" - } - }, - "type": "object" - } - ] - }, - "state": { - "default": "validated", - "downloadable": [ - "uploaded", - "md5summed", - "validating", - "validated", - "error", - "invalid", - "released" - ], - "oneOf": [ - { - "enum": [ - "uploading", - "uploaded", - "md5summing", - "md5summed", - "validating", - "error", - "invalid", - "suppressed", - "redacted", - "live" - ] - }, - { - "enum": [ - "validated", - "submitted", - "released" - ] - } - ], - "public": [ - "live" - ], - "term": { - "description": "The current state of the object.\n" - } - }, - "state_comment": { - "description": "Optional comment about why the file is in the current state, mainly for invalid state.\n", - "type": "string" - }, - "submitter_id": { - "description": "The file ID assigned by the submitter.", - "type": [ - "string", - "null" - ] - }, - "type": { - "enum": [ - "slide_image" - ] - }, - "updated_datetime": { - "oneOf": [ - { - "format": "date-time", - "type": "string" - }, - { - "type": "null" - } - ], - "term": { - "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" - } - } - }, - "required": [ - "submitter_id", - "file_name", - "file_size", - "md5sum", - "data_category", - "data_type", - "data_format", - "slides" - ], - "submittable": true, - "systemProperties": [ - "id", - "project_id", - "created_datetime", - "updated_datetime", - "state", - "file_state", - "error_type" - ], - "title": "Slide Image", - "type": "object", - "uniqueKeys": [ - [ - "id" - ], - [ - "project_id", - "submitter_id" - ] - ], - "validators": null - }, - "submitted_aligned_reads": { - "$schema": "http://json-schema.org/draft-04/schema#", - "additionalProperties": false, - "category": "data_file", - "description": "Data file containing aligned reads that are used as input to GDC workflows.\n", - "id": "submitted_aligned_reads", - "links": [ - { - "backref": "submitted_aligned_reads_files", - "label": "data_from", - "multiplicity": "one_to_many", - "name": "read_groups", - "required": true, - "target_type": "read_group" - }, - { - "backref": "submitted_aligned_reads_files", - "label": "data_from", - "multiplicity": "many_to_many", - "name": "core_metadata_collections", - "required": false, - "target_type": "core_metadata_collection" - } - ], - "namespace": "http://gdc.nci.nih.gov", - "program": "*", - "project": "*", - "properties": { - "core_metadata_collections": { - "anyOf": [ - { - "items": { - "additionalProperties": true, - "minItems": 1, - "properties": { - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "submitter_id": { - "type": "string" - } - }, - "type": "object" - }, - "type": "array" - }, - { - "additionalProperties": true, - "properties": { - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "submitter_id": { - "type": "string" - } - }, - "type": "object" - } - ] - }, - "created_datetime": { - "oneOf": [ - { - "format": "date-time", - "type": "string" - }, - { - "type": "null" - } - ], - "term": { - "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" - } - }, - "data_category": { - "enum": [ - "Sequencing Data", - "Sequencing Reads", - "Raw Sequencing Data" - ], - "term": { - "description": "Broad categorization of the contents of the data file.\n" - } - }, - "data_format": { - "enum": [ - "BAM", - "BED" - ], - "term": { - "description": "Format of the data files.\n" - } - }, - "data_type": { - "enum": [ - "Aligned Reads", - "Alignment Coordinates" - ], - "term": { - "description": "Specific content type of the data file.\n" - } - }, - "error_type": { - "enum": [ - "file_size", - "file_format", - "md5sum" - ], - "term": { - "description": "Type of error for the data file object.\n" - } - }, - "experimental_strategy": { - "enum": [ - "WGS", - "WXS", - "Low Pass WGS", - "Validation", - "RNA-Seq", - "miRNA-Seq", - "Total RNA-Seq", - "DNA Panel" - ], - "term": { - "description": "The sequencing strategy used to generate the data file.\n" - } - }, - "file_name": { - "term": { - "description": "The name (or part of a name) of a file (of any type).\n" - }, - "type": "string" - }, - "file_size": { - "term": { - "description": "The size of the data file (object) in bytes.\n" - }, - "type": "integer" - }, - "file_state": { - "default": "registered", - "enum": [ - "registered", - "uploading", - "uploaded", - "validating", - "validated", - "submitted", - "processing", - "processed", - "released", - "error" - ], - "term": { - "description": "The current state of the data file object.\n" - } - }, - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "systemAlias": "node_id", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "md5sum": { - "pattern": "^[a-f0-9]{32}$", - "term": { - "description": "The 128-bit hash value expressed as a 32 digit hexadecimal number used as a file's digital fingerprint.\n" - }, - "type": "string" - }, - "object_id": { - "description": "The GUID of the object in the index service.", - "type": "string" - }, - "project_id": { - "term": { - "description": "Unique ID for any specific defined piece of work that is undertaken or attempted to meet a single requirement.\n" - }, - "type": "string" - }, - "read_groups": { - "anyOf": [ - { - "items": { - "additionalProperties": true, - "minItems": 1, - "properties": { - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "submitter_id": { - "type": "string" - } - }, - "type": "object" - }, - "type": "array" - }, - { - "additionalProperties": true, - "properties": { - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "submitter_id": { - "type": "string" - } - }, - "type": "object" - } - ] - }, - "state": { - "default": "validated", - "downloadable": [ - "uploaded", - "md5summed", - "validating", - "validated", - "error", - "invalid", - "released" - ], - "oneOf": [ - { - "enum": [ - "uploading", - "uploaded", - "md5summing", - "md5summed", - "validating", - "error", - "invalid", - "suppressed", - "redacted", - "live" - ] - }, - { - "enum": [ - "validated", - "submitted", - "released" - ] - } - ], - "public": [ - "live" - ], - "term": { - "description": "The current state of the object.\n" - } - }, - "state_comment": { - "description": "Optional comment about why the file is in the current state, mainly for invalid state.\n", - "type": "string" - }, - "submitter_id": { - "description": "The file ID assigned by the submitter.", - "type": [ - "string", - "null" - ] - }, - "type": { - "enum": [ - "submitted_aligned_reads" - ] - }, - "updated_datetime": { - "oneOf": [ - { - "format": "date-time", - "type": "string" - }, - { - "type": "null" - } - ], - "term": { - "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" - } - } - }, - "required": [ - "submitter_id", - "file_name", - "file_size", - "data_format", - "md5sum", - "data_category", - "data_type", - "experimental_strategy", - "read_groups" - ], - "submittable": true, - "systemProperties": [ - "id", - "project_id", - "created_datetime", - "updated_datetime", - "state", - "file_state", - "error_type" - ], - "title": "Submitted Aligned Reads", - "type": "object", - "uniqueKeys": [ - [ - "id" - ], - [ - "project_id", - "submitter_id" - ] - ], - "validators": null - }, - "submitted_copy_number": { - "$schema": "http://json-schema.org/draft-04/schema#", - "additionalProperties": false, - "category": "data_file", - "description": "Data file containing normalized copy number information from an aliquot.\n", - "id": "submitted_copy_number", - "links": [ - { - "exclusive": true, - "required": true, - "subgroup": [ - { - "backref": "submitted_copy_number_files", - "label": "derived_from", - "multiplicity": "one_to_one", - "name": "aliquots", - "required": false, - "target_type": "aliquot" - }, - { - "backref": "submitted_copy_number_files", - "label": "derived_from", - "multiplicity": "many_to_many", - "name": "read_groups", - "required": false, - "target_type": "read_group" - } - ] - } - ], - "namespace": "http://gdc.nci.nih.gov", - "program": "*", - "project": "*", - "properties": { - "aliquots": { - "anyOf": [ - { - "items": { - "additionalProperties": true, - "maxItems": 1, - "minItems": 1, - "properties": { - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "submitter_id": { - "type": "string" - } - }, - "type": "object" - }, - "type": "array" - }, - { - "additionalProperties": true, - "properties": { - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "submitter_id": { - "type": "string" - } - }, - "type": "object" - } - ] - }, - "created_datetime": { - "oneOf": [ - { - "format": "date-time", - "type": "string" - }, - { - "type": "null" - } - ], - "term": { - "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" - } - }, - "data_category": { - "term": { - "description": "Broad categorization of the contents of the data file.\n" - }, - "type": "string" - }, - "data_format": { - "term": { - "description": "Format of the data files.\n" - }, - "type": "string" - }, - "data_type": { - "term": { - "description": "Specific content type of the data file.\n" - }, - "type": "string" - }, - "error_type": { - "enum": [ - "file_size", - "file_format", - "md5sum" - ], - "term": { - "description": "Type of error for the data file object.\n" - } - }, - "experimental_strategy": { - "term": { - "description": "The sequencing strategy used to generate the data file.\n" - }, - "type": "string" - }, - "file_name": { - "term": { - "description": "The name (or part of a name) of a file (of any type).\n" - }, - "type": "string" - }, - "file_size": { - "term": { - "description": "The size of the data file (object) in bytes.\n" - }, - "type": "integer" - }, - "file_state": { - "default": "registered", - "enum": [ - "registered", - "uploading", - "uploaded", - "validating", - "validated", - "submitted", - "processing", - "processed", - "released", - "error" - ], - "term": { - "description": "The current state of the data file object.\n" - } - }, - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "systemAlias": "node_id", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "md5sum": { - "pattern": "^[a-f0-9]{32}$", - "term": { - "description": "The 128-bit hash value expressed as a 32 digit hexadecimal number used as a file's digital fingerprint.\n" - }, - "type": "string" - }, - "object_id": { - "description": "The GUID of the object in the index service.", - "type": "string" - }, - "project_id": { - "term": { - "description": "Unique ID for any specific defined piece of work that is undertaken or attempted to meet a single requirement.\n" - }, - "type": "string" - }, - "read_groups": { - "anyOf": [ - { - "items": { - "additionalProperties": true, - "minItems": 1, - "properties": { - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "submitter_id": { - "type": "string" - } - }, - "type": "object" - }, - "type": "array" - }, - { - "additionalProperties": true, - "properties": { - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "submitter_id": { - "type": "string" - } - }, - "type": "object" - } - ] - }, - "state": { - "default": "validated", - "downloadable": [ - "uploaded", - "md5summed", - "validating", - "validated", - "error", - "invalid", - "released" - ], - "oneOf": [ - { - "enum": [ - "uploading", - "uploaded", - "md5summing", - "md5summed", - "validating", - "error", - "invalid", - "suppressed", - "redacted", - "live" - ] - }, - { - "enum": [ - "validated", - "submitted", - "released" - ] - } - ], - "public": [ - "live" - ], - "term": { - "description": "The current state of the object.\n" - } - }, - "state_comment": { - "description": "Optional comment about why the file is in the current state, mainly for invalid state.\n", - "type": "string" - }, - "submitter_id": { - "description": "The file ID assigned by the submitter.", - "type": [ - "string", - "null" - ] - }, - "type": { - "enum": [ - "submitted_copy_number" - ] - }, - "updated_datetime": { - "oneOf": [ - { - "format": "date-time", - "type": "string" - }, - { - "type": "null" - } - ], - "term": { - "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" - } - } - }, - "required": [ - "submitter_id", - "file_name", - "file_size", - "data_format", - "md5sum", - "data_category", - "data_type", - "experimental_strategy" - ], - "submittable": true, - "systemProperties": [ - "id", - "project_id", - "created_datetime", - "updated_datetime", - "state", - "file_state", - "error_type" - ], - "title": "Submitted Copy Number", - "type": "object", - "uniqueKeys": [ - [ - "id" - ], - [ - "project_id", - "submitter_id" - ] - ], - "validators": null - }, - "submitted_methylation": { - "$schema": "http://json-schema.org/draft-04/schema#", - "additionalProperties": false, - "category": "data_file", - "description": "DNA methylation data files contain information on raw and normalized signal intensities, detection confidence and calculated beta values for methylated and unmethylated probes. DNA methylation is an epigenetic mark which can be associated with transcriptional inactivity when located in promoter regions.", - "id": "submitted_methylation", - "links": [ - { - "backref": "submitted_methylation_files", - "label": "data_from", - "multiplicity": "many_to_one", - "name": "aliquots", - "required": true, - "target_type": "aliquot" - } - ], - "namespace": "https://www.bloodpac.org/", - "program": "*", - "project": "*", - "properties": { - "aliquots": { - "anyOf": [ - { - "items": { - "additionalProperties": true, - "maxItems": 1, - "minItems": 1, - "properties": { - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "submitter_id": { - "type": "string" - } - }, - "type": "object" - }, - "type": "array" - }, - { - "additionalProperties": true, - "properties": { - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "submitter_id": { - "type": "string" - } - }, - "type": "object" - } - ] - }, - "assay_instrument": { - "enum": [ - "Illumina" - ] - }, - "assay_instrument_model": { - "enum": [ - "Illumina Infinium HumanMethylation450", - "Illumina Infinium HumanMethylation450K" - ] - }, - "assay_method": { - "enum": [ - "Methylation Array" - ] - }, - "created_datetime": { - "oneOf": [ - { - "format": "date-time", - "type": "string" - }, - { - "type": "null" - } - ], - "term": { - "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" - } - }, - "data_category": { - "enum": [ - "Methylation Data" - ], - "term": { - "description": "Broad categorization of the contents of the data file.\n" - } - }, - "data_format": { - "enum": [ - "IDAT" - ], - "term": { - "description": "Format of the data files.\n" - } - }, - "data_type": { - "enum": [ - "Methylation Intensity Values" - ], - "term": { - "description": "Specific content type of the data file.\n" - } - }, - "error_type": { - "enum": [ - "file_size", - "file_format", - "md5sum" - ], - "term": { - "description": "Type of error for the data file object.\n" - } - }, - "file_name": { - "term": { - "description": "The name (or part of a name) of a file (of any type).\n" - }, - "type": "string" - }, - "file_size": { - "term": { - "description": "The size of the data file (object) in bytes.\n" - }, - "type": "integer" - }, - "file_state": { - "default": "registered", - "enum": [ - "registered", - "uploading", - "uploaded", - "validating", - "validated", - "submitted", - "processing", - "processed", - "released", - "error" - ], - "term": { - "description": "The current state of the data file object.\n" - } - }, - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "systemAlias": "node_id", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "md5sum": { - "pattern": "^[a-f0-9]{32}$", - "term": { - "description": "The 128-bit hash value expressed as a 32 digit hexadecimal number used as a file's digital fingerprint.\n" - }, - "type": "string" - }, - "object_id": { - "description": "The GUID of the object in the index service.", - "type": "string" - }, - "project_id": { - "term": { - "description": "Unique ID for any specific defined piece of work that is undertaken or attempted to meet a single requirement.\n" - }, - "type": "string" - }, - "state": { - "default": "validated", - "downloadable": [ - "uploaded", - "md5summed", - "validating", - "validated", - "error", - "invalid", - "released" - ], - "oneOf": [ - { - "enum": [ - "uploading", - "uploaded", - "md5summing", - "md5summed", - "validating", - "error", - "invalid", - "suppressed", - "redacted", - "live" - ] - }, - { - "enum": [ - "validated", - "submitted", - "released" - ] - } - ], - "public": [ - "live" - ], - "term": { - "description": "The current state of the object.\n" - } - }, - "state_comment": { - "description": "Optional comment about why the file is in the current state, mainly for invalid state.\n", - "type": "string" - }, - "submitter_id": { - "description": "The file ID assigned by the submitter.", - "type": [ - "string", - "null" - ] - }, - "type": { - "enum": [ - "submitted_methylation" - ] - }, - "updated_datetime": { - "oneOf": [ - { - "format": "date-time", - "type": "string" - }, - { - "type": "null" - } - ], - "term": { - "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" - } - } - }, - "required": [ - "submitter_id", - "file_name", - "file_size", - "md5sum", - "data_category", - "data_type", - "data_format", - "aliquots" - ], - "submittable": true, - "systemProperties": [ - "id", - "project_id", - "created_datetime", - "updated_datetime", - "state", - "file_state", - "error_type" - ], - "title": "Submitted Methylation", - "type": "object", - "uniqueKeys": [ - [ - "id" - ], - [ - "project_id", - "submitter_id" - ] - ], - "validators": null - }, - "submitted_somatic_mutation": { - "$schema": "http://json-schema.org/draft-04/schema#", - "additionalProperties": false, - "category": "data_file", - "description": "Data file containing somatic mutation calls from a read group.\n", - "id": "submitted_somatic_mutation", - "links": [ - { - "backref": "submitted_somatic_mutations", - "label": "derived_from", - "multiplicity": "many_to_many", - "name": "read_groups", - "required": true, - "target_type": "read_group" - } - ], - "namespace": "http://gdc.nci.nih.gov", - "program": "*", - "project": "*", - "properties": { - "created_datetime": { - "oneOf": [ - { - "format": "date-time", - "type": "string" - }, - { - "type": "null" - } - ], - "term": { - "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" - } - }, - "data_category": { - "term": { - "description": "Broad categorization of the contents of the data file.\n" - }, - "type": "string" - }, - "data_format": { - "term": { - "description": "Format of the data files.\n" - }, - "type": "string" - }, - "data_type": { - "term": { - "description": "Specific content type of the data file.\n" - }, - "type": "string" - }, - "error_type": { - "enum": [ - "file_size", - "file_format", - "md5sum" - ], - "term": { - "description": "Type of error for the data file object.\n" - } - }, - "experimental_strategy": { - "term": { - "description": "The sequencing strategy used to generate the data file.\n" - }, - "type": "string" - }, - "file_name": { - "term": { - "description": "The name (or part of a name) of a file (of any type).\n" - }, - "type": "string" - }, - "file_size": { - "term": { - "description": "The size of the data file (object) in bytes.\n" - }, - "type": "integer" - }, - "file_state": { - "default": "registered", - "enum": [ - "registered", - "uploading", - "uploaded", - "validating", - "validated", - "submitted", - "processing", - "processed", - "released", - "error" - ], - "term": { - "description": "The current state of the data file object.\n" - } - }, - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "systemAlias": "node_id", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "md5sum": { - "pattern": "^[a-f0-9]{32}$", - "term": { - "description": "The 128-bit hash value expressed as a 32 digit hexadecimal number used as a file's digital fingerprint.\n" - }, - "type": "string" - }, - "object_id": { - "description": "The GUID of the object in the index service.", - "type": "string" - }, - "project_id": { - "term": { - "description": "Unique ID for any specific defined piece of work that is undertaken or attempted to meet a single requirement.\n" - }, - "type": "string" - }, - "read_groups": { - "anyOf": [ - { - "items": { - "additionalProperties": true, - "minItems": 1, - "properties": { - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "submitter_id": { - "type": "string" - } - }, - "type": "object" - }, - "type": "array" - }, - { - "additionalProperties": true, - "properties": { - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "submitter_id": { - "type": "string" - } - }, - "type": "object" - } - ] - }, - "state": { - "default": "validated", - "downloadable": [ - "uploaded", - "md5summed", - "validating", - "validated", - "error", - "invalid", - "released" - ], - "oneOf": [ - { - "enum": [ - "uploading", - "uploaded", - "md5summing", - "md5summed", - "validating", - "error", - "invalid", - "suppressed", - "redacted", - "live" - ] - }, - { - "enum": [ - "validated", - "submitted", - "released" - ] - } - ], - "public": [ - "live" - ], - "term": { - "description": "The current state of the object.\n" - } - }, - "state_comment": { - "description": "Optional comment about why the file is in the current state, mainly for invalid state.\n", - "type": "string" - }, - "submitter_id": { - "description": "The file ID assigned by the submitter.", - "type": [ - "string", - "null" - ] - }, - "total_variants": { - "description": "The total number of variants detected carrying a base change difference from the reference genome.", - "type": "integer" - }, - "type": { - "enum": [ - "submitted_somatic_mutation" - ] - }, - "updated_datetime": { - "oneOf": [ - { - "format": "date-time", - "type": "string" - }, - { - "type": "null" - } - ], - "term": { - "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" - } - } - }, - "required": [ - "submitter_id", - "file_name", - "file_size", - "data_format", - "md5sum", - "data_category", - "data_type", - "experimental_strategy", - "read_groups" - ], - "submittable": true, - "systemProperties": [ - "id", - "project_id", - "created_datetime", - "updated_datetime", - "state", - "file_state", - "error_type" - ], - "title": "Submitted Somatic Mutation", - "type": "object", - "uniqueKeys": [ - [ - "id" - ], - [ - "project_id", - "submitter_id" - ] - ], - "validators": null - }, - "submitted_unaligned_reads": { - "$schema": "http://json-schema.org/draft-04/schema#", - "additionalProperties": false, - "category": "data_file", - "description": "Data file containing unaligned reads that have not been GDC Harmonized.", - "id": "submitted_unaligned_reads", - "links": [ - { - "backref": "submitted_unaligned_reads_files", - "label": "data_from", - "multiplicity": "many_to_one", - "name": "read_groups", - "required": true, - "target_type": "read_group" - }, - { - "backref": "submitted_unaligned_reads_files", - "label": "data_from", - "multiplicity": "many_to_many", - "name": "core_metadata_collections", - "required": false, - "target_type": "core_metadata_collection" - } - ], - "namespace": "http://gdc.nci.nih.gov", - "program": "*", - "project": "*", - "properties": { - "core_metadata_collections": { - "anyOf": [ - { - "items": { - "additionalProperties": true, - "minItems": 1, - "properties": { - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "submitter_id": { - "type": "string" - } - }, - "type": "object" - }, - "type": "array" - }, - { - "additionalProperties": true, - "properties": { - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "submitter_id": { - "type": "string" - } - }, - "type": "object" - } - ] - }, - "created_datetime": { - "oneOf": [ - { - "format": "date-time", - "type": "string" - }, - { - "type": "null" - } - ], - "term": { - "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" - } - }, - "data_category": { - "enum": [ - "Sequencing Data", - "Sequencing Reads", - "Raw Sequencing Data" - ], - "term": { - "description": "Broad categorization of the contents of the data file.\n" - } - }, - "data_format": { - "enum": [ - "BAM", - "FASTQ" - ], - "term": { - "description": "Format of the data files.\n" - } - }, - "data_type": { - "enum": [ - "Unaligned Reads" - ], - "term": { - "description": "Specific content type of the data file.\n" - } - }, - "error_type": { - "enum": [ - "file_size", - "file_format", - "md5sum" - ], - "term": { - "description": "Type of error for the data file object.\n" - } - }, - "experimental_strategy": { - "enum": [ - "WGS", - "WXS", - "Low Pass WGS", - "Validation", - "RNA-Seq", - "miRNA-Seq", - "Total RNA-Seq", - "DNA Panel" - ], - "term": { - "description": "The sequencing strategy used to generate the data file.\n" - } - }, - "file_name": { - "term": { - "description": "The name (or part of a name) of a file (of any type).\n" - }, - "type": "string" - }, - "file_size": { - "term": { - "description": "The size of the data file (object) in bytes.\n" - }, - "type": "integer" - }, - "file_state": { - "default": "registered", - "enum": [ - "registered", - "uploading", - "uploaded", - "validating", - "validated", - "submitted", - "processing", - "processed", - "released", - "error" - ], - "term": { - "description": "The current state of the data file object.\n" - } - }, - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "systemAlias": "node_id", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "md5sum": { - "pattern": "^[a-f0-9]{32}$", - "term": { - "description": "The 128-bit hash value expressed as a 32 digit hexadecimal number used as a file's digital fingerprint.\n" - }, - "type": "string" - }, - "object_id": { - "description": "The GUID of the object in the index service.", - "type": "string" - }, - "project_id": { - "term": { - "description": "Unique ID for any specific defined piece of work that is undertaken or attempted to meet a single requirement.\n" - }, - "type": "string" - }, - "read_groups": { - "anyOf": [ - { - "items": { - "additionalProperties": true, - "maxItems": 1, - "minItems": 1, - "properties": { - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "submitter_id": { - "type": "string" - } - }, - "type": "object" - }, - "type": "array" - }, - { - "additionalProperties": true, - "properties": { - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "submitter_id": { - "type": "string" - } - }, - "type": "object" - } - ] - }, - "state": { - "default": "validated", - "downloadable": [ - "uploaded", - "md5summed", - "validating", - "validated", - "error", - "invalid", - "released" - ], - "oneOf": [ - { - "enum": [ - "uploading", - "uploaded", - "md5summing", - "md5summed", - "validating", - "error", - "invalid", - "suppressed", - "redacted", - "live" - ] - }, - { - "enum": [ - "validated", - "submitted", - "released" - ] - } - ], - "public": [ - "live" - ], - "term": { - "description": "The current state of the object.\n" - } - }, - "state_comment": { - "description": "Optional comment about why the file is in the current state, mainly for invalid state.\n", - "type": "string" - }, - "submitter_id": { - "description": "The file ID assigned by the submitter.", - "type": [ - "string", - "null" - ] - }, - "type": { - "enum": [ - "submitted_unaligned_reads" - ] - }, - "updated_datetime": { - "oneOf": [ - { - "format": "date-time", - "type": "string" - }, - { - "type": "null" - } - ], - "term": { - "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" - } - } - }, - "required": [ - "submitter_id", - "file_name", - "file_size", - "md5sum", - "data_category", - "data_type", - "data_format", - "experimental_strategy", - "read_groups" - ], - "submittable": true, - "systemProperties": [ - "id", - "project_id", - "created_datetime", - "updated_datetime", - "state", - "file_state", - "error_type" - ], - "title": "Submitted Unaligned Reads", - "type": "object", - "uniqueKeys": [ - [ - "id" - ], - [ - "project_id", - "submitter_id" + "code" ] ], "validators": null }, - "treatment": { + "root": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, - "category": "clinical", - "description": "Record of the administration and intention of therapeutic agents provided to a patient to alter the course of a pathologic process.\n", - "id": "treatment", - "links": [ - { - "backref": "treatments", - "label": "describes", - "multiplicity": "many_to_one", - "name": "diagnoses", - "required": true, - "target_type": "diagnosis" - } - ], - "namespace": "http://gdc.nci.nih.gov", + "category": "internal", + "constraints": null, + "id": "root", + "links": [], "program": "*", "project": "*", "properties": { - "created_datetime": { - "oneOf": [ - { - "format": "date-time", - "type": "string" - }, - { - "type": "null" - } - ], - "term": { - "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" - } - }, - "days_to_treatment": { - "term": { - "description": "Number of days from date of initial pathologic diagnosis that treatment began.\n", - "termDef": { - "cde_id": null, - "cde_version": null, - "source": null, - "term": "Days to Treatment Start", - "term_url": null - } - }, - "type": "number" - }, - "days_to_treatment_end": { - "term": { - "description": "Time interval from the date of the initial pathologic diagnosis to the date of treatment end, represented as a calculated number of days.\n", - "termDef": { - "cde_id": 5102431, - "cde_version": 1, - "source": "caDSR", - "term": "Treatment End Subtract First Pathologic Diagnosis Day Calculation Value", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=5102431&version=1.0" - } - }, - "type": "number" - }, - "days_to_treatment_start": { - "term": { - "description": "Time interval from the date of the initial pathologic diagnosis to the start of treatment, represented as a calculated number of days.\n", - "termDef": { - "cde_id": 5102411, - "cde_version": 1, - "source": "caDSR", - "term": "Treatment Start Subtract First Pathologic Diagnosis Time Day Calculation Value", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=5102411&version=1.0" - } - }, - "type": "number" - }, - "diagnoses": { - "anyOf": [ - { - "items": { - "additionalProperties": true, - "maxItems": 1, - "minItems": 1, - "properties": { - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "submitter_id": { - "type": "string" - } - }, - "type": "object" - }, - "type": "array" - }, - { - "additionalProperties": true, - "properties": { - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "submitter_id": { - "type": "string" - } - }, - "type": "object" - } - ] - }, "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "systemAlias": "node_id", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "project_id": { - "term": { - "description": "Unique ID for any specific defined piece of work that is undertaken or attempted to meet a single requirement.\n" - }, - "type": "string" - }, - "state": { - "default": "validated", - "downloadable": [ - "uploaded", - "md5summed", - "validating", - "validated", - "error", - "invalid", - "released" - ], - "oneOf": [ - { - "enum": [ - "uploading", - "uploaded", - "md5summing", - "md5summed", - "validating", - "error", - "invalid", - "suppressed", - "redacted", - "live" - ] - }, - { - "enum": [ - "validated", - "submitted", - "released" - ] - } - ], - "public": [ - "live" - ], - "term": { - "description": "The current state of the object.\n" - } - }, - "submitter_id": { - "type": [ - "string", - "null" - ] - }, - "therapeutic_agents": { - "term": { - "description": "Text identification of the individual agent(s) used as part of a prior treatment regimen.\n", - "termDef": { - "cde_id": 2975232, - "cde_version": 1, - "source": "caDSR", - "term": "Prior Therapy Regimen Text", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2975232&version=1.0" - } - }, - "type": "string" - }, - "treatment_anatomic_site": { "enum": [ - "Abdomen, total", - "Arm", - "Ascites", - "Axillary", - "Body, total", - "Bone", - "Bone, non-spine", - "Brain, focal", - "Brain, whole", - "Brain-C2", - "Breast", - "Cervical", - "Chest Wall", - "Effusion", - "Epitrochlear", - "Eye", - "Femoral", - "Gastrointestinal, Colon", - "Gastrointestinal, Gallbladder", - "Gastrointestinal, Intestine", - "Gastrointestinal, Liver", - "Gastrointestinal, NOS", - "Gastrointestinal, Pancreas", - "Gastrointestinal, Rectum", - "Gastrointestinal, Stomach", - "Genitourinary, Bladder", - "Genitourinary, Kidney", - "Genitourinary, NOS", - "Genitourinary, Prostate", - "Genitourinary, Prostate and Seminal Vesicles", - "Head", - "Head, Face, or Neck", - "Hilar", - "Iliac-common", - "Iliac-external", - "Inguinal", - "Internal Mammary Nodes", - "Leg", - "Lung", - "Lymph Nodes", - "Lymph node, distant (specify site)", - "Lymph node, locoregional (specify site)", - "Mantle", - "Mediastinal", - "Mediastinum", - "Mesenteric", - "Occipital", - "Other", - "Paraaortic", - "Parametrium", - "Parotid", - "Pelvis", - "Popliteal", - "Primary tumor site", - "Prostate", - "Prostate Bed", - "Prostate, Seminal Vesicles and Lymph Nodes", - "Rectum", - "Retroperitoneal", - "Sacrum", - "Seminal vesicles", - "Shoulder", - "Skin, lower extremity, local", - "Skin, total", - "Skin, trunk, local", - "Skin, upper extremity, local", - "Spine", - "Spine, whole", - "Splenic", - "Submandibular", - "Supraclavicular", - "Supraclavicular/Axillary Level 3", - "Thorax", - "Trunk", - "Unknown", - "Not Reported", - "Not Allowed To Collect" - ], - "term": { - "description": "The anatomic site or field targeted by a treatment regimen or single agent therapy.\n", - "termDef": { - "cde_id": null, - "cde_version": null, - "source": null, - "term": "Treatment Anatomic Site", - "term_url": null - } - } + "root" + ] }, - "treatment_intent_type": { - "term": { - "description": "Text term to identify the reason for the administration of a treatment regimen. [Manually-curated]\n", - "termDef": { - "cde_id": 2793511, - "cde_version": 1, - "source": "caDSR", - "term": "Treatment Regimen Intent Type", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2793511&version=1.0" - } - }, + "schema_version": { "type": "string" }, - "treatment_or_therapy": { - "enum": [ - "yes", - "no", - "unknown", - "not reported" - ], - "term": { - "description": "A yes/no/unknown/not applicable indicator related to the administration of therapeutic agents received before the body specimen was collected.\n", - "termDef": { - "cde_id": 4231463, - "cde_version": 1, - "source": "caDSR", - "term": "Therapeutic Procedure Prior Specimen Collection Administered Yes No Unknown Not Applicable Indicator", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=4231463&version=1.0" - } - } - }, - "treatment_outcome": { - "enum": [ - "Complete Response", - "Partial Response", - "Treatment Ongoing", - "Treatment Stopped Due to Toxicity", - "Unknown" - ], - "term": { - "description": "Text term that describes the patient¿s final outcome after the treatment was administered.\n", - "termDef": { - "cde_id": 5102383, - "cde_version": 1, - "source": "caDSR", - "term": "Treatment Outcome Type", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=5102383&version=1.0" - } - } - }, - "treatment_type": { - "enum": [ - "Ablation", - "Chemotherapy", - "Concurrent Chemoradiation", - "Cryoablation", - "Embolization", - "Hormone Therapy", - "Internal Radiation", - "Immunotherapy (Including Vaccines)", - "Other", - "Pharmaceutical Therapy", - "Radiation Therapy", - "Stem Cell Treatment", - "Surgery", - "Targeted Molecular Therapy", - "Unknown", - "Not Reported", - "Not Allowed To Collect" - ], - "term": { - "description": "Text term that describes the kind of treatment administered.\n", - "termDef": { - "cde_id": 5102381, - "cde_version": 1, - "source": "caDSR", - "term": "Treatment Method Type", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=5102381&version=1.0" - } - } - }, "type": { - "enum": [ - "treatment" - ] - }, - "updated_datetime": { - "oneOf": [ - { - "format": "date-time", - "type": "string" - }, - { - "type": "null" - } - ], - "term": { - "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" - } + "type": "string" } }, - "submittable": true, + "required": [ + "type" + ], + "root": "*", + "submittable": false, "systemProperties": [ - "id", - "project_id", - "state", - "created_datetime", - "updated_datetime" + "id" ], - "title": "Treatment", + "title": "Root", "type": "object", "uniqueKeys": [ [ "id" - ], - [ - "project_id", - "submitter_id" ] ], "validators": null diff --git a/data/schema.json b/data/schema.json index 2e8e9f9dde..7fd71adc83 100644 --- a/data/schema.json +++ b/data/schema.json @@ -1,164 +1,108 @@ { "data": { "__schema": { - "directives": [ - { - "args": [ - { - "defaultValue": null, - "description": "Included when true.", - "name": "if", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - } - ], - "description": "Directs the executor to include this field or fragment only when the `if` argument is true.", - "locations": [ - "FIELD", - "FRAGMENT_SPREAD", - "INLINE_FRAGMENT" - ], - "name": "include" - }, - { - "args": [ - { - "defaultValue": null, - "description": "Skipped when true.", - "name": "if", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - } - ], - "description": "Directs the executor to skip this field or fragment when the `if` argument is true.", - "locations": [ - "FIELD", - "FRAGMENT_SPREAD", - "INLINE_FRAGMENT" - ], - "name": "skip" - } - ], - "mutationType": null, "queryType": { "name": "Root" }, + "mutationType": null, "subscriptionType": null, "types": [ { + "kind": "OBJECT", + "name": "Root", "description": null, - "enumValues": null, "fields": [ { + "name": "transaction_log", + "description": null, "args": [ { - "defaultValue": null, - "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", - "name": "committable", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, + "name": "id", "description": null, - "name": "is_dry_run", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "ID", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "type", "description": null, - "name": "quick_search", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "quick_search", "description": null, - "name": "offset", "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "project_id", "description": null, - "name": "id", "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "project", "description": null, - "name": "last", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "program", "description": null, - "name": "order_by_asc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_asc", "description": null, - "name": "committed_by", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_desc", "description": null, - "name": "project", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "related_cases", "description": null, - "name": "entities", "type": { "kind": "LIST", "name": null, @@ -167,52 +111,42 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "first", "description": null, - "name": "program", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "last", "description": null, - "name": "closed", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "offset", "description": null, - "name": "order_by_desc", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "entities", "description": null, - "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -221,47 +155,60 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "is_dry_run", "description": null, - "name": "type", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "closed", "description": null, - "name": "related_cases", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "committable", + "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "state", "description": null, - "name": "first", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - } + }, + "defaultValue": null + }, + { + "name": "committed_by", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null } ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "transaction_log", "type": { "kind": "LIST", "name": null, @@ -270,104 +217,101 @@ "name": "TransactionLog", "ofType": null } - } + }, + "isDeprecated": false, + "deprecationReason": null }, { + "name": "_transaction_log_count", + "description": null, "args": [ { - "defaultValue": null, - "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", - "name": "committable", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, + "name": "id", "description": null, - "name": "is_dry_run", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "ID", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "type", "description": null, - "name": "quick_search", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "quick_search", "description": null, - "name": "offset", "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "project_id", "description": null, - "name": "id", "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "project", "description": null, - "name": "last", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "program", "description": null, - "name": "order_by_asc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_asc", "description": null, - "name": "committed_by", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_desc", "description": null, - "name": "project", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "related_cases", "description": null, - "name": "entities", "type": { "kind": "LIST", "name": null, @@ -376,52 +320,42 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "first", "description": null, - "name": "program", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "last", "description": null, - "name": "closed", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "offset", "description": null, - "name": "order_by_desc", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "entities", "description": null, - "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -430,79 +364,95 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "is_dry_run", "description": null, - "name": "type", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "closed", "description": null, - "name": "related_cases", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "committable", + "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "state", "description": null, - "name": "first", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - } + }, + "defaultValue": null + }, + { + "name": "committed_by", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null } ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_transaction_log_count", "type": { "kind": "SCALAR", "name": "Int", "ofType": null - } + }, + "isDeprecated": false, + "deprecationReason": null }, { + "name": "node", + "description": null, "args": [ { - "defaultValue": null, + "name": "id", "description": null, - "name": "order_by_asc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "submitter_id", "description": null, - "name": "updated_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, - "description": null, "name": "ids", + "description": null, "type": { "kind": "LIST", "name": null, @@ -511,92 +461,102 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, - "description": null, "name": "quick_search", + "description": null, "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "first", "description": null, - "name": "updated_after", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - } + }, + "defaultValue": "10" }, { - "defaultValue": null, + "name": "offset", "description": null, - "name": "created_after", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_before", "description": null, - "name": "offset", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_after", "description": null, - "name": "order_by_desc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_before", "description": null, - "name": "project_id", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_after", "description": null, - "name": "created_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_asc", "description": null, - "name": "id", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_desc", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { "name": "of_type", + "description": null, "type": { "kind": "LIST", "name": null, @@ -605,23 +565,30 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": "10", + "name": "project_id", "description": null, - "name": "first", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - } + }, + "defaultValue": null + }, + { + "name": "category", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null } ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "node", "type": { "kind": "LIST", "name": null, @@ -630,24 +597,37 @@ "name": "Node", "ofType": null } - } + }, + "isDeprecated": false, + "deprecationReason": null }, { + "name": "data_release", + "description": null, "args": [ { - "defaultValue": null, + "name": "id", "description": null, - "name": "order_by_asc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "submitter_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "ids", "description": null, - "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -656,88 +636,102 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "quick_search", "description": null, - "name": "with_path_to_any", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "first", "description": null, - "name": "data_format", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "offset", "description": null, - "name": "file_size", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, - "description": null, "name": "created_before", + "description": null, "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_after", "description": null, - "name": "id", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_before", "description": null, - "name": "with_path_to", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by_asc", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by_desc", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "with_links", "description": null, - "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -746,12 +740,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_links_any", "description": null, - "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -760,12 +754,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_links", "description": null, - "name": "error_type", "type": { "kind": "LIST", "name": null, @@ -774,50 +768,54 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to", "description": null, - "name": "object_id", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to_any", "description": null, - "name": "state", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_path_to", "description": null, - "name": "created_after", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_datetime", "description": null, - "name": "file_name", "type": { "kind": "LIST", "name": null, @@ -826,50 +824,40 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "major_version", "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "minor_version", "description": null, - "name": "file_state", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "name", "description": null, - "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -878,12 +866,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "release_date", "description": null, - "name": "data_type", "type": { "kind": "LIST", "name": null, @@ -892,36 +880,26 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "released", "description": null, - "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_datetime", "description": null, - "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -930,50 +908,63 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, - "description": null, "name": "not", + "description": null, "type": { "kind": "LIST", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_experimental_metadata", + "name": "NotPropertiesInput_data_release", "ofType": null } - } - }, + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "data_release", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_data_release_count", + "description": null, + "args": [ { - "defaultValue": null, + "name": "id", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { "name": "submitter_id", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "ids", "description": null, - "name": "state_comment", "type": { "kind": "LIST", "name": null, @@ -982,139 +973,116 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, - "description": null, "name": "quick_search", + "description": null, "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "first", "description": null, - "name": "md5sum", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "offset", "description": null, - "name": "ids", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_before", "description": null, - "name": "updated_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_after", "description": null, - "name": "data_category", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_before", "description": null, - "name": "first", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "experimental_metadata", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "experimental_metadata", - "ofType": null - } - } - }, - { - "args": [ + }, + "defaultValue": null + }, { - "defaultValue": null, + "name": "updated_after", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { "name": "order_by_asc", + "description": null, "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_desc", "description": null, - "name": "updated_datetime", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_links", "description": null, - "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_links_any", "description": null, - "name": "data_format", "type": { "kind": "LIST", "name": null, @@ -1123,46 +1091,26 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_links", "description": null, - "name": "file_size", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, - "description": null, "name": "with_path_to", + "description": null, "type": { "kind": "LIST", "name": null, @@ -1171,40 +1119,40 @@ "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to_any", "description": null, - "name": "without_links", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_path_to", "description": null, - "name": "created_datetime", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_datetime", "description": null, - "name": "error_type", "type": { "kind": "LIST", "name": null, @@ -1213,50 +1161,40 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "major_version", "description": null, - "name": "object_id", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "minor_version", "description": null, - "name": "state", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "name", "description": null, - "name": "file_name", "type": { "kind": "LIST", "name": null, @@ -1265,22 +1203,12 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "release_date", "description": null, - "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -1289,26 +1217,26 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "released", "description": null, - "name": "file_state", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_datetime", "description": null, - "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -1317,50 +1245,59 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "not", "description": null, - "name": "data_type", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_data_release", "ofType": null } - } - }, + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "root", + "description": null, + "args": [ { - "defaultValue": null, + "name": "id", "description": null, - "name": "updated_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "submitter_id", "description": null, - "name": "without_path_to", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "ids", "description": null, - "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -1369,159 +1306,102 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "quick_search", "description": null, - "name": "offset", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_experimental_metadata", - "ofType": null - } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "first", "description": null, - "name": "submitter_id", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "offset", "description": null, - "name": "state_comment", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_before", "description": null, - "name": "quick_search", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "md5sum", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_after", "description": null, - "name": "ids", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_before", "description": null, - "name": "updated_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_after", "description": null, - "name": "data_category", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_asc", "description": null, - "name": "first", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_experimental_metadata_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ + }, + "defaultValue": null + }, { - "defaultValue": null, + "name": "order_by_desc", "description": null, - "name": "order_by_asc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_links", "description": null, - "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -1530,26 +1410,26 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_links_any", "description": null, - "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_links", "description": null, - "name": "data_format", "type": { "kind": "LIST", "name": null, @@ -1558,46 +1438,26 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to", "description": null, - "name": "file_size", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to_any", "description": null, - "name": "with_path_to", "type": { "kind": "LIST", "name": null, @@ -1606,26 +1466,26 @@ "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_path_to", "description": null, - "name": "without_links", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "schema_version", "description": null, - "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -1634,26 +1494,63 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "not", "description": null, - "name": "error_type", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_root", "ofType": null } - } + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "root", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_root_count", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "submitter_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "ids", "description": null, - "name": "object_id", "type": { "kind": "LIST", "name": null, @@ -1662,88 +1559,102 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "quick_search", "description": null, - "name": "total_variants", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "first", "description": null, - "name": "state", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_before", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { "name": "created_after", + "description": null, "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_before", "description": null, - "name": "file_name", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_after", "description": null, - "name": "order_by_desc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_asc", "description": null, - "name": "project_id", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_desc", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "with_links", "description": null, - "name": "file_state", "type": { "kind": "LIST", "name": null, @@ -1752,12 +1663,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, - "description": null, "name": "with_links_any", + "description": null, "type": { "kind": "LIST", "name": null, @@ -1766,12 +1677,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_links", "description": null, - "name": "data_type", "type": { "kind": "LIST", "name": null, @@ -1780,22 +1691,12 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to", "description": null, - "name": "without_path_to", "type": { "kind": "LIST", "name": null, @@ -1804,50 +1705,40 @@ "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to_any", "description": null, - "name": "with_links", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_path_to", "description": null, - "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_submitted_somatic_mutation", + "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "schema_version", "description": null, - "name": "submitter_id", "type": { "kind": "LIST", "name": null, @@ -1856,50 +1747,59 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "not", "description": null, - "name": "state_comment", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_root", "ofType": null } - } - }, + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "project", + "description": null, + "args": [ { - "defaultValue": null, + "name": "id", "description": null, - "name": "quick_search", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "submitter_id", "description": null, - "name": "md5sum", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, - "description": null, "name": "ids", + "description": null, "type": { "kind": "LIST", "name": null, @@ -1908,177 +1808,116 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "quick_search", "description": null, - "name": "updated_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_category", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "first", "description": null, - "name": "experimental_strategy", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "offset", "description": null, - "name": "first", "type": { "kind": "SCALAR", "name": "Int", "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "submitted_somatic_mutation", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "submitted_somatic_mutation", - "ofType": null - } - } - }, - { - "args": [ + }, + "defaultValue": null + }, { - "defaultValue": null, + "name": "created_before", "description": null, - "name": "order_by_asc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_after", "description": null, - "name": "with_path_to_any", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_before", "description": null, - "name": "data_format", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_after", "description": null, - "name": "file_size", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_asc", "description": null, - "name": "created_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_desc", "description": null, - "name": "id", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_links", "description": null, - "name": "with_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_links_any", "description": null, - "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -2087,12 +1926,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_links", "description": null, - "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -2101,54 +1940,54 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to", "description": null, - "name": "error_type", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to_any", "description": null, - "name": "object_id", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_path_to", "description": null, - "name": "total_variants", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "administering_ic", "description": null, - "name": "state", "type": { "kind": "LIST", "name": null, @@ -2157,22 +1996,12 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "availability_mechanism", "description": null, - "name": "file_name", "type": { "kind": "LIST", "name": null, @@ -2181,22 +2010,12 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "availability_type", "description": null, - "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -2205,12 +2024,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "code", "description": null, - "name": "file_state", "type": { "kind": "LIST", "name": null, @@ -2219,12 +2038,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_description", "description": null, - "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -2233,12 +2052,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "date_collected", "description": null, - "name": "data_type", "type": { "kind": "LIST", "name": null, @@ -2247,36 +2066,26 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "dbgap_accession_number", "description": null, - "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "institution", "description": null, - "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -2285,36 +2094,26 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "intended_release_date", "description": null, - "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_submitted_somatic_mutation", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "investigator", "description": null, - "name": "submitter_id", "type": { "kind": "LIST", "name": null, @@ -2323,12 +2122,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "investigator_affiliation", "description": null, - "name": "state_comment", "type": { "kind": "LIST", "name": null, @@ -2337,22 +2136,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, + "name": "investigator_name", "description": null, - "name": "md5sum", "type": { "kind": "LIST", "name": null, @@ -2361,12 +2150,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "location", "description": null, - "name": "ids", "type": { "kind": "LIST", "name": null, @@ -2375,22 +2164,12 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "name", "description": null, - "name": "data_category", "type": { "kind": "LIST", "name": null, @@ -2399,12 +2178,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "project_title", "description": null, - "name": "experimental_strategy", "type": { "kind": "LIST", "name": null, @@ -2413,87 +2192,54 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_submitted_somatic_mutation_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, + "name": "releasable", "description": null, - "name": "percent_aligned", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "Boolean", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "released", "description": null, - "name": "encoding", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "research_focus_area", "description": null, - "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "research_program", "description": null, - "name": "sequence_duplication_levels", "type": { "kind": "LIST", "name": null, @@ -2502,12 +2248,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "state", "description": null, - "name": "submitter_id", "type": { "kind": "LIST", "name": null, @@ -2516,12 +2262,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "support_id", "description": null, - "name": "basic_statistics", "type": { "kind": "LIST", "name": null, @@ -2530,12 +2276,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "support_source", "description": null, - "name": "per_base_sequence_content", "type": { "kind": "LIST", "name": null, @@ -2544,206 +2290,195 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "year_awarded", "description": null, - "name": "kmer_content", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "project_id", "description": null, - "name": "percent_gc_content", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "not", "description": null, - "name": "per_tile_sequence_quality", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_project", "ofType": null } - } - }, + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "project", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_project_count", + "description": null, + "args": [ { - "defaultValue": null, + "name": "id", "description": null, - "name": "created_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "submitter_id", "description": null, - "name": "id", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "ids", "description": null, - "name": "with_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "quick_search", "description": null, - "name": "workflow_link", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "first", "description": null, - "name": "without_links", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "offset", "description": null, - "name": "created_datetime", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_before", "description": null, - "name": "updated_datetime", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_after", "description": null, - "name": "per_sequence_gc_content", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_before", "description": null, - "name": "state", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_after", "description": null, - "name": "per_base_n_content", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_asc", "description": null, - "name": "created_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, - "description": null, "name": "order_by_desc", + "description": null, "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_links", "description": null, - "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -2752,12 +2487,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, - "description": null, "name": "with_links_any", + "description": null, "type": { "kind": "LIST", "name": null, @@ -2766,12 +2501,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_links", "description": null, - "name": "adapter_content", "type": { "kind": "LIST", "name": null, @@ -2780,36 +2515,40 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to", "description": null, - "name": "workflow_end_datetime", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to_any", "description": null, - "name": "updated_before", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, - "description": null, "name": "without_path_to", + "description": null, "type": { "kind": "LIST", "name": null, @@ -2818,12 +2557,12 @@ "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "administering_ic", "description": null, - "name": "per_base_sequence_quality", "type": { "kind": "LIST", "name": null, @@ -2832,12 +2571,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "availability_mechanism", "description": null, - "name": "fastq_name", "type": { "kind": "LIST", "name": null, @@ -2846,12 +2585,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "availability_type", "description": null, - "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -2860,74 +2599,54 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "code", "description": null, - "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_read_group_qc", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_description", "description": null, - "name": "total_sequences", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "date_collected", "description": null, - "name": "total_aligned_reads", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "dbgap_accession_number", "description": null, - "name": "sequence_length_distribution", "type": { "kind": "LIST", "name": null, @@ -2936,12 +2655,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "institution", "description": null, - "name": "per_sequence_quality_score", "type": { "kind": "LIST", "name": null, @@ -2950,12 +2669,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "intended_release_date", "description": null, - "name": "ids", "type": { "kind": "LIST", "name": null, @@ -2964,12 +2683,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "investigator", "description": null, - "name": "workflow_type", "type": { "kind": "LIST", "name": null, @@ -2978,22 +2697,12 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "investigator_affiliation", "description": null, - "name": "overrepresented_sequences", "type": { "kind": "LIST", "name": null, @@ -3002,12 +2711,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "investigator_name", "description": null, - "name": "workflow_start_datetime", "type": { "kind": "LIST", "name": null, @@ -3016,12 +2725,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "location", "description": null, - "name": "workflow_version", "type": { "kind": "LIST", "name": null, @@ -3030,91 +2739,68 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "read_group_qc", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "read_group_qc", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, + "name": "name", "description": null, - "name": "percent_aligned", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "project_title", "description": null, - "name": "order_by_asc", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "releasable", "description": null, - "name": "encoding", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "released", "description": null, - "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "research_focus_area", "description": null, - "name": "sequence_duplication_levels", "type": { "kind": "LIST", "name": null, @@ -3123,12 +2809,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "research_program", "description": null, - "name": "submitter_id", "type": { "kind": "LIST", "name": null, @@ -3137,12 +2823,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "state", "description": null, - "name": "basic_statistics", "type": { "kind": "LIST", "name": null, @@ -3151,12 +2837,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "support_id", "description": null, - "name": "per_base_sequence_content", "type": { "kind": "LIST", "name": null, @@ -3165,12 +2851,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "support_source", "description": null, - "name": "kmer_content", "type": { "kind": "LIST", "name": null, @@ -3179,26 +2865,26 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "year_awarded", "description": null, - "name": "percent_gc_content", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "Float", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "project_id", "description": null, - "name": "per_tile_sequence_quality", "type": { "kind": "LIST", "name": null, @@ -3207,46 +2893,63 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "not", "description": null, - "name": "created_before", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_project", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "open_access_doc", + "description": null, + "args": [ { - "defaultValue": null, - "description": null, "name": "id", + "description": null, "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "submitter_id", "description": null, - "name": "with_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "ids", "description": null, - "name": "workflow_link", "type": { "kind": "LIST", "name": null, @@ -3255,116 +2958,102 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "quick_search", "description": null, - "name": "without_links", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "first", "description": null, - "name": "created_datetime", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "offset", "description": null, - "name": "updated_datetime", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_before", "description": null, - "name": "per_sequence_gc_content", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_after", "description": null, - "name": "state", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_before", "description": null, - "name": "per_base_n_content", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_after", "description": null, - "name": "created_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_asc", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { "name": "order_by_desc", + "description": null, "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_links", "description": null, - "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -3373,12 +3062,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, - "description": null, "name": "with_links_any", + "description": null, "type": { "kind": "LIST", "name": null, @@ -3387,12 +3076,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_links", "description": null, - "name": "adapter_content", "type": { "kind": "LIST", "name": null, @@ -3401,36 +3090,40 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to", "description": null, - "name": "workflow_end_datetime", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to_any", "description": null, - "name": "updated_before", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, - "description": null, "name": "without_path_to", + "description": null, "type": { "kind": "LIST", "name": null, @@ -3439,12 +3132,12 @@ "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_datetime", "description": null, - "name": "per_base_sequence_quality", "type": { "kind": "LIST", "name": null, @@ -3453,12 +3146,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_category", "description": null, - "name": "fastq_name", "type": { "kind": "LIST", "name": null, @@ -3467,12 +3160,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_format", "description": null, - "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -3481,74 +3174,54 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_type", "description": null, - "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_read_group_qc", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "doc_url", "description": null, - "name": "total_sequences", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "error_type", "description": null, - "name": "total_aligned_reads", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "file_name", "description": null, - "name": "sequence_length_distribution", "type": { "kind": "LIST", "name": null, @@ -3557,26 +3230,26 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "file_size", "description": null, - "name": "per_sequence_quality_score", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "file_state", "description": null, - "name": "ids", "type": { "kind": "LIST", "name": null, @@ -3585,12 +3258,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "md5sum", "description": null, - "name": "workflow_type", "type": { "kind": "LIST", "name": null, @@ -3599,22 +3272,26 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "object_id", "description": null, - "name": "updated_after", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "project_id", "description": null, - "name": "overrepresented_sequences", "type": { "kind": "LIST", "name": null, @@ -3623,12 +3300,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "state", "description": null, - "name": "workflow_start_datetime", "type": { "kind": "LIST", "name": null, @@ -3637,12 +3314,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_datetime", "description": null, - "name": "workflow_version", "type": { "kind": "LIST", "name": null, @@ -3651,45 +3328,53 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "not", "description": null, - "name": "first", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_open_access_doc", + "ofType": null + } + }, + "defaultValue": null } ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_read_group_qc_count", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "open_access_doc", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null }, { + "name": "_open_access_doc_count", + "description": null, "args": [ { - "defaultValue": null, + "name": "id", "description": null, - "name": "order_by_asc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "submitter_id", "description": null, - "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -3698,88 +3383,116 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "ids", "description": null, - "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "quick_search", "description": null, - "name": "data_format", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "first", "description": null, - "name": "file_size", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "offset", "description": null, - "name": "created_before", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_before", "description": null, - "name": "id", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_after", "description": null, - "name": "with_path_to", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_before", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updated_after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by_asc", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by_desc", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "with_links", "description": null, - "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -3788,12 +3501,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_links_any", "description": null, - "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -3802,12 +3515,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_links", "description": null, - "name": "error_type", "type": { "kind": "LIST", "name": null, @@ -3816,50 +3529,54 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to", "description": null, - "name": "object_id", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to_any", "description": null, - "name": "state", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_path_to", "description": null, - "name": "created_after", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_datetime", "description": null, - "name": "file_name", "type": { "kind": "LIST", "name": null, @@ -3868,22 +3585,26 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_category", "description": null, - "name": "order_by_desc", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_format", "description": null, - "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -3892,12 +3613,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_type", "description": null, - "name": "file_state", "type": { "kind": "LIST", "name": null, @@ -3906,12 +3627,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "doc_url", "description": null, - "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -3920,12 +3641,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "error_type", "description": null, - "name": "data_type", "type": { "kind": "LIST", "name": null, @@ -3934,36 +3655,40 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "file_name", "description": null, - "name": "updated_before", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "file_size", "description": null, - "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "Float", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "file_state", "description": null, - "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -3972,36 +3697,26 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "md5sum", "description": null, - "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_submitted_copy_number", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "object_id", "description": null, - "name": "submitter_id", "type": { "kind": "LIST", "name": null, @@ -4010,12 +3725,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "project_id", "description": null, - "name": "state_comment", "type": { "kind": "LIST", "name": null, @@ -4024,22 +3739,26 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "state", "description": null, - "name": "quick_search", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_datetime", "description": null, - "name": "md5sum", "type": { "kind": "LIST", "name": null, @@ -4048,50 +3767,59 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "not", "description": null, - "name": "ids", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_open_access_doc", "ofType": null } - } - }, + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "program", + "description": null, + "args": [ { - "defaultValue": null, + "name": "id", "description": null, - "name": "updated_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "submitter_id", "description": null, - "name": "data_category", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "ids", "description": null, - "name": "experimental_strategy", "type": { "kind": "LIST", "name": null, @@ -4100,49 +3828,102 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "quick_search", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { "name": "first", + "description": null, "type": { "kind": "SCALAR", "name": "Int", "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "submitted_copy_number", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "submitted_copy_number", - "ofType": null - } - } - }, - { - "args": [ + }, + "defaultValue": null + }, + { + "name": "offset", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "created_before", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "created_after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updated_before", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, { - "defaultValue": null, + "name": "updated_after", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { "name": "order_by_asc", + "description": null, "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_desc", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "with_links", "description": null, - "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -4151,26 +3932,26 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_links_any", "description": null, - "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_links", "description": null, - "name": "data_format", "type": { "kind": "LIST", "name": null, @@ -4179,46 +3960,26 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to", "description": null, - "name": "file_size", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to_any", "description": null, - "name": "with_path_to", "type": { "kind": "LIST", "name": null, @@ -4227,26 +3988,26 @@ "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_path_to", "description": null, - "name": "without_links", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "dbgap_accession_number", "description": null, - "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -4255,12 +4016,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "name", "description": null, - "name": "error_type", "type": { "kind": "LIST", "name": null, @@ -4269,26 +4030,63 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "not", "description": null, - "name": "object_id", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_program", "ofType": null } - } + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "program", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_program_count", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "submitter_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "ids", "description": null, - "name": "state", "type": { "kind": "LIST", "name": null, @@ -4297,46 +4095,102 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null + }, + { + "name": "quick_search", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_before", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { "name": "created_after", + "description": null, "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_before", "description": null, - "name": "file_name", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updated_after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_asc", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { "name": "order_by_desc", + "description": null, "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_links", "description": null, - "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -4345,12 +4199,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_links_any", "description": null, - "name": "file_state", "type": { "kind": "LIST", "name": null, @@ -4359,12 +4213,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_links", "description": null, - "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -4373,36 +4227,26 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to", "description": null, - "name": "data_type", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to_any", "description": null, - "name": "without_path_to", "type": { "kind": "LIST", "name": null, @@ -4411,50 +4255,40 @@ "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_path_to", "description": null, - "name": "with_links", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "dbgap_accession_number", "description": null, - "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_submitted_copy_number", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "name", "description": null, - "name": "submitter_id", "type": { "kind": "LIST", "name": null, @@ -4463,36 +4297,49 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "not", "description": null, - "name": "state_comment", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_program", "ofType": null } - } - }, + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "core_metadata_collection", + "description": null, + "args": [ { - "defaultValue": null, + "name": "id", "description": null, - "name": "quick_search", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "submitter_id", "description": null, - "name": "md5sum", "type": { "kind": "LIST", "name": null, @@ -4501,12 +4348,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, - "description": null, "name": "ids", + "description": null, "type": { "kind": "LIST", "name": null, @@ -4515,121 +4362,116 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "quick_search", "description": null, - "name": "updated_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "first", "description": null, - "name": "data_category", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "offset", "description": null, - "name": "experimental_strategy", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_before", "description": null, - "name": "first", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_submitted_copy_number_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ + }, + "defaultValue": null + }, { - "defaultValue": null, + "name": "created_after", "description": null, - "name": "major_version", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updated_before", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_after", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { "name": "order_by_asc", + "description": null, "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_desc", "description": null, - "name": "updated_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_links", "description": null, - "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_links_any", "description": null, - "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -4638,70 +4480,40 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_links", "description": null, - "name": "released", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to", "description": null, - "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_data_release", + "name": "WithPathToInput", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to_any", "description": null, - "name": "with_path_to", "type": { "kind": "LIST", "name": null, @@ -4710,22 +4522,26 @@ "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_path_to", "description": null, - "name": "quick_search", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "accepts_healthy_volunteers", "description": null, - "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -4734,12 +4550,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "actual_enrollment", "description": null, - "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -4748,12 +4564,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "arm", "description": null, - "name": "release_date", "type": { "kind": "LIST", "name": null, @@ -4762,12 +4578,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "arm_description", "description": null, - "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -4776,12 +4592,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "arm_name", "description": null, - "name": "ids", "type": { "kind": "LIST", "name": null, @@ -4790,80 +4606,54 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "arm_type", "description": null, - "name": "minor_version", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "brief_summary", "description": null, - "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "brief_title", "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "category", "description": null, - "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -4872,77 +4662,68 @@ "name": "String", "ofType": null } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "data_release", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "data_release", - "ofType": null - } - } - }, - { - "args": [ + }, + "defaultValue": null + }, { - "defaultValue": null, + "name": "clinical_trial_website", "description": null, - "name": "major_version", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "collaborators", "description": null, - "name": "order_by_asc", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "condition", "description": null, - "name": "updated_before", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "contact", "description": null, - "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "contributor", "description": null, - "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -4951,94 +4732,110 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "coverage", "description": null, - "name": "released", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_datetime", "description": null, - "name": "offset", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "creator", "description": null, - "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_data_release", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_availability_date", "description": null, - "name": "created_before", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_available", "description": null, - "name": "id", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_available_for_request", "description": null, - "name": "with_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_category", "description": null, - "name": "quick_search", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_format", "description": null, - "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -5047,12 +4844,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_type", "description": null, - "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -5061,12 +4858,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "description", "description": null, - "name": "release_date", "type": { "kind": "LIST", "name": null, @@ -5075,12 +4872,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "eligibility_criteria", "description": null, - "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -5089,12 +4886,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "enrollment", "description": null, - "name": "ids", "type": { "kind": "LIST", "name": null, @@ -5103,80 +4900,96 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "fda_regulated_device_product", "description": null, - "name": "minor_version", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "fda_regulated_drug_product", "description": null, - "name": "updated_after", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "first_posted_date", "description": null, - "name": "created_after", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "focus", "description": null, - "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "has_data_monitoring_committee", "description": null, - "name": "order_by_desc", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "intervention_type", "description": null, - "name": "first", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "ipd_sharing_statement", "description": null, - "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -5185,59 +4998,40 @@ "name": "String", "ofType": null } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_data_release_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "language", "description": null, - "name": "updated_before", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "last_update_posted_date", "description": null, - "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "location", "description": null, - "name": "submitter_id", "type": { "kind": "LIST", "name": null, @@ -5246,12 +5040,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "locations_removed", "description": null, - "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -5260,12 +5054,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "nct_number", "description": null, - "name": "doi", "type": { "kind": "LIST", "name": null, @@ -5274,80 +5068,96 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "original_estimated_enrollment", "description": null, - "name": "offset", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "primary_completion_date", "description": null, - "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_publication", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "principle_investigator", "description": null, - "name": "created_before", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "project_id", "description": null, - "name": "id", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "prs_account", "description": null, - "name": "with_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "publications", "description": null, - "name": "quick_search", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "publisher", "description": null, - "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -5356,12 +5166,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "recruitment_status", "description": null, - "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -5370,12 +5180,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "responsible_party", "description": null, - "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -5384,12 +5194,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "rights", "description": null, - "name": "ids", "type": { "kind": "LIST", "name": null, @@ -5398,12 +5208,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "secondary_id", "description": null, - "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -5412,12 +5222,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "source", "description": null, - "name": "state", "type": { "kind": "LIST", "name": null, @@ -5426,56 +5236,26 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "state", "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "study_completion_date", "description": null, - "name": "pmid", "type": { "kind": "LIST", "name": null, @@ -5484,22 +5264,12 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "study_design_allocation", "description": null, - "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -5508,63 +5278,26 @@ "name": "String", "ofType": null } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "publication", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "publication", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "study_design_intervention_model", "description": null, - "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "study_design_masking", "description": null, - "name": "submitter_id", "type": { "kind": "LIST", "name": null, @@ -5573,12 +5306,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "study_design_primary_purpose", "description": null, - "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -5587,12 +5320,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "study_phase", "description": null, - "name": "doi", "type": { "kind": "LIST", "name": null, @@ -5601,80 +5334,68 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "study_start_date", "description": null, - "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_publication", + "kind": "SCALAR", + "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "subject", "description": null, - "name": "id", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "submitted_date", "description": null, - "name": "with_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "title", "description": null, - "name": "quick_search", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_datetime", "description": null, - "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -5683,12 +5404,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "us_product", "description": null, - "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -5697,12 +5418,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "verification_date", "description": null, - "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -5711,26 +5432,53 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "not", "description": null, - "name": "ids", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_core_metadata_collection", "ofType": null } - } + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "core_metadata_collection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_core_metadata_collection_count", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "submitter_id", "description": null, - "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -5739,12 +5487,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "ids", "description": null, - "name": "state", "type": { "kind": "LIST", "name": null, @@ -5753,80 +5501,102 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "quick_search", "description": null, - "name": "updated_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_before", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { "name": "created_after", + "description": null, "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_before", "description": null, - "name": "with_path_to_any", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_after", "description": null, - "name": "order_by_desc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_asc", "description": null, - "name": "pmid", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_desc", "description": null, - "name": "first", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_links", "description": null, - "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -5835,25 +5605,12 @@ "name": "String", "ofType": null } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_publication_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ + }, + "defaultValue": null + }, { - "defaultValue": null, + "name": "with_links_any", "description": null, - "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -5862,12 +5619,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, - "description": null, "name": "without_links", + "description": null, "type": { "kind": "LIST", "name": null, @@ -5876,12 +5633,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to", "description": null, - "name": "without_path_to", "type": { "kind": "LIST", "name": null, @@ -5890,32 +5647,40 @@ "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to_any", "description": null, - "name": "order_by_asc", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_path_to", "description": null, - "name": "updated_before", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "accepts_healthy_volunteers", "description": null, - "name": "dbgap_accession_number", "type": { "kind": "LIST", "name": null, @@ -5924,26 +5689,26 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "actual_enrollment", "description": null, - "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "arm", "description": null, - "name": "ids", "type": { "kind": "LIST", "name": null, @@ -5952,12 +5717,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "arm_description", "description": null, - "name": "name", "type": { "kind": "LIST", "name": null, @@ -5966,76 +5731,96 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "arm_name", "description": null, - "name": "quick_search", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "arm_type", "description": null, - "name": "updated_after", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "brief_summary", "description": null, - "name": "created_after", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "brief_title", "description": null, - "name": "offset", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "category", "description": null, - "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_program", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "clinical_trial_website", "description": null, - "name": "order_by_desc", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "collaborators", "description": null, - "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -6044,73 +5829,54 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "condition", "description": null, - "name": "created_before", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "contact", "description": null, - "name": "id", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "contributor", "description": null, - "name": "with_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "program", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "program", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, + "name": "coverage", "description": null, - "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -6119,12 +5885,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_datetime", "description": null, - "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -6133,74 +5899,82 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "creator", "description": null, - "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_availability_date", "description": null, - "name": "order_by_asc", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_available", "description": null, - "name": "updated_before", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_available_for_request", "description": null, - "name": "dbgap_accession_number", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_category", "description": null, - "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_format", "description": null, - "name": "ids", "type": { "kind": "LIST", "name": null, @@ -6209,12 +5983,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_type", "description": null, - "name": "name", "type": { "kind": "LIST", "name": null, @@ -6223,76 +5997,54 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "description", "description": null, - "name": "quick_search", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "eligibility_criteria", "description": null, - "name": "updated_after", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "enrollment", "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_program", + "kind": "SCALAR", + "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "fda_regulated_device_product", "description": null, - "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -6301,103 +6053,40 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "fda_regulated_drug_product", "description": null, - "name": "with_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_program_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "first_posted_date", "description": null, - "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "focus", "description": null, - "name": "acknowledgee", "type": { "kind": "LIST", "name": null, @@ -6406,12 +6095,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "has_data_monitoring_committee", "description": null, - "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -6420,36 +6109,40 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "intervention_type", "description": null, - "name": "offset", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "ipd_sharing_statement", "description": null, - "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_acknowledgement", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "language", "description": null, - "name": "submitter_id", "type": { "kind": "LIST", "name": null, @@ -6458,56 +6151,68 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "last_update_posted_date", "description": null, - "name": "created_before", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "location", "description": null, - "name": "id", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "locations_removed", "description": null, - "name": "with_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "nct_number", "description": null, - "name": "quick_search", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "original_estimated_enrollment", "description": null, - "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -6516,12 +6221,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "primary_completion_date", "description": null, - "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -6530,12 +6235,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "principle_investigator", "description": null, - "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -6544,12 +6249,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "project_id", "description": null, - "name": "ids", "type": { "kind": "LIST", "name": null, @@ -6558,12 +6263,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "prs_account", "description": null, - "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -6572,12 +6277,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "publications", "description": null, - "name": "state", "type": { "kind": "LIST", "name": null, @@ -6586,66 +6291,82 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "publisher", "description": null, - "name": "updated_after", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "recruitment_status", "description": null, - "name": "created_after", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "responsible_party", "description": null, - "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "rights", "description": null, - "name": "order_by_desc", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "secondary_id", "description": null, - "name": "first", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "source", "description": null, - "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -6654,63 +6375,40 @@ "name": "String", "ofType": null } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "acknowledgement", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "acknowledgement", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "state", "description": null, - "name": "updated_before", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "study_completion_date", "description": null, - "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "study_design_allocation", "description": null, - "name": "acknowledgee", "type": { "kind": "LIST", "name": null, @@ -6719,12 +6417,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "study_design_intervention_model", "description": null, - "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -6733,36 +6431,40 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "study_design_masking", "description": null, - "name": "offset", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "study_design_primary_purpose", "description": null, - "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_acknowledgement", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "study_phase", "description": null, - "name": "submitter_id", "type": { "kind": "LIST", "name": null, @@ -6771,56 +6473,68 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "study_start_date", "description": null, - "name": "created_before", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "subject", "description": null, - "name": "id", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "submitted_date", "description": null, - "name": "with_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "title", "description": null, - "name": "quick_search", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_datetime", "description": null, - "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -6829,12 +6543,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "us_product", "description": null, - "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -6843,12 +6557,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "verification_date", "description": null, - "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -6857,26 +6571,49 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "not", "description": null, - "name": "ids", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_core_metadata_collection", "ofType": null } - } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "clinical_trial_file", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "submitter_id", "description": null, - "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -6885,12 +6622,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "ids", "description": null, - "name": "state", "type": { "kind": "LIST", "name": null, @@ -6899,66 +6636,102 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "quick_search", "description": null, - "name": "updated_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_before", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { "name": "created_after", + "description": null, "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_before", "description": null, - "name": "with_path_to_any", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_after", "description": null, - "name": "order_by_desc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_asc", "description": null, - "name": "first", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_desc", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "with_links", "description": null, - "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -6967,25 +6740,12 @@ "name": "String", "ofType": null } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_acknowledgement_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ + }, + "defaultValue": null + }, { - "defaultValue": null, + "name": "with_links_any", "description": null, - "name": "library_name", "type": { "kind": "LIST", "name": null, @@ -6994,50 +6754,54 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_links", "description": null, - "name": "is_paired_end", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to", "description": null, - "name": "order_by_asc", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to_any", "description": null, - "name": "adapter_sequence", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_path_to", "description": null, - "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, @@ -7046,12 +6810,12 @@ "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_datetime", "description": null, - "name": "library_strand", "type": { "kind": "LIST", "name": null, @@ -7060,12 +6824,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_category", "description": null, - "name": "submitter_id", "type": { "kind": "LIST", "name": null, @@ -7074,12 +6838,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_format", "description": null, - "name": "library_preparation_kit_name", "type": { "kind": "LIST", "name": null, @@ -7088,12 +6852,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_type", "description": null, - "name": "base_caller_version", "type": { "kind": "LIST", "name": null, @@ -7102,12 +6866,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "error_type", "description": null, - "name": "target_capture_kit_name", "type": { "kind": "LIST", "name": null, @@ -7116,12 +6880,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "file_name", "description": null, - "name": "library_preparation_kit_vendor", "type": { "kind": "LIST", "name": null, @@ -7130,12 +6894,26 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "file_size", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "file_state", "description": null, - "name": "base_caller_name", "type": { "kind": "LIST", "name": null, @@ -7144,60 +6922,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "md5sum", "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "size_selection_range", "type": { "kind": "LIST", "name": null, @@ -7206,12 +6936,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "object_id", "description": null, - "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -7220,12 +6950,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "project_id", "description": null, - "name": "library_preparation_kit_version", "type": { "kind": "LIST", "name": null, @@ -7234,12 +6964,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "state", "description": null, - "name": "sequencing_date", "type": { "kind": "LIST", "name": null, @@ -7248,12 +6978,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, - "description": null, "name": "updated_datetime", + "description": null, "type": { "kind": "LIST", "name": null, @@ -7262,40 +6992,53 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "not", "description": null, - "name": "to_trim_adapter_sequence", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_clinical_trial_file", "ofType": null } - } - }, + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "clinical_trial_file", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_clinical_trial_file_count", + "description": null, + "args": [ { - "defaultValue": null, + "name": "id", "description": null, - "name": "RIN", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "submitter_id", "description": null, - "name": "platform", "type": { "kind": "LIST", "name": null, @@ -7304,12 +7047,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "ids", "description": null, - "name": "state", "type": { "kind": "LIST", "name": null, @@ -7318,140 +7061,116 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "quick_search", "description": null, - "name": "flow_cell_barcode", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "first", "description": null, - "name": "barcoding_applied", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "offset", "description": null, - "name": "created_after", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_before", "description": null, - "name": "library_selection", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_after", "description": null, - "name": "order_by_desc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_before", "description": null, - "name": "project_id", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_after", "description": null, - "name": "library_preparation_kit_catalog_number", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_asc", "description": null, - "name": "with_links_any", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_desc", "description": null, - "name": "updated_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_links", "description": null, - "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_links_any", "description": null, - "name": "target_capture_kit_target_region", "type": { "kind": "LIST", "name": null, @@ -7460,12 +7179,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_links", "description": null, - "name": "target_capture_kit_version", "type": { "kind": "LIST", "name": null, @@ -7474,64 +7193,54 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to", "description": null, - "name": "with_links", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to_any", "description": null, - "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_read_group", + "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_path_to", "description": null, - "name": "instrument_model", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_datetime", "description": null, - "name": "read_group_name", "type": { "kind": "LIST", "name": null, @@ -7540,22 +7249,12 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_category", "description": null, - "name": "library_strategy", "type": { "kind": "LIST", "name": null, @@ -7564,12 +7263,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_format", "description": null, - "name": "spike_ins_concentration", "type": { "kind": "LIST", "name": null, @@ -7578,12 +7277,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_type", "description": null, - "name": "adapter_name", "type": { "kind": "LIST", "name": null, @@ -7592,12 +7291,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "error_type", "description": null, - "name": "ids", "type": { "kind": "LIST", "name": null, @@ -7606,40 +7305,40 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "file_name", "description": null, - "name": "includes_spike_ins", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "file_size", "description": null, - "name": "read_length", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "Float", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "file_state", "description": null, - "name": "experiment_name", "type": { "kind": "LIST", "name": null, @@ -7648,22 +7347,12 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "md5sum", "description": null, - "name": "spike_ins_fasta", "type": { "kind": "LIST", "name": null, @@ -7672,12 +7361,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "object_id", "description": null, - "name": "target_capture_kit_vendor", "type": { "kind": "LIST", "name": null, @@ -7686,12 +7375,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "project_id", "description": null, - "name": "target_capture_kit_catalog_number", "type": { "kind": "LIST", "name": null, @@ -7700,12 +7389,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "state", "description": null, - "name": "sequencing_center", "type": { "kind": "LIST", "name": null, @@ -7714,39 +7403,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "read_group", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "read_group", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, + "name": "updated_datetime", "description": null, - "name": "library_name", "type": { "kind": "LIST", "name": null, @@ -7755,36 +7417,59 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "not", "description": null, - "name": "is_paired_end", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_clinical_trial_file", "ofType": null } - } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "datanode", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "submitter_id", "description": null, - "name": "order_by_asc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "ids", "description": null, - "name": "adapter_sequence", "type": { "kind": "LIST", "name": null, @@ -7793,454 +7478,242 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "quick_search", "description": null, - "name": "with_path_to_any", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "first", "description": null, - "name": "library_strand", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "10" }, { - "defaultValue": null, + "name": "offset", "description": null, - "name": "submitter_id", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_before", "description": null, - "name": "library_preparation_kit_name", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_after", "description": null, - "name": "base_caller_version", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_before", "description": null, - "name": "target_capture_kit_name", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_after", "description": null, - "name": "library_preparation_kit_vendor", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_asc", "description": null, - "name": "base_caller_name", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_desc", "description": null, - "name": "created_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_datetime", "description": null, - "name": "id", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_category", "description": null, - "name": "with_path_to", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_format", "description": null, - "name": "without_links", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_type", "description": null, - "name": "size_selection_range", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "error_type", "description": null, - "name": "created_datetime", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "file_name", "description": null, - "name": "library_preparation_kit_version", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "file_size", "description": null, - "name": "sequencing_date", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "file_state", "description": null, - "name": "updated_datetime", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "md5sum", "description": null, - "name": "to_trim_adapter_sequence", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "RIN", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "platform", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "flow_cell_barcode", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "barcoding_applied", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_selection", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "object_id", "description": null, - "name": "order_by_desc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, - "description": null, "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_preparation_kit_catalog_number", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, "description": null, - "name": "updated_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "state", "description": null, - "name": "without_path_to", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_datetime", "description": null, - "name": "target_capture_kit_target_region", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "type", "description": null, - "name": "target_capture_kit_version", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "of_type", "description": null, - "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -8249,1640 +7722,1418 @@ "name": "String", "ofType": null } - } - }, + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DataNode", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_node_type", + "description": null, + "args": [ { - "defaultValue": null, + "name": "first", "description": null, - "name": "offset", "type": { "kind": "SCALAR", "name": "Int", "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_read_group", - "ofType": null - } - } + }, + "defaultValue": "10" }, { - "defaultValue": null, - "description": null, - "name": "instrument_model", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "read_group_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, + "name": "order_by_asc", "description": null, - "name": "quick_search", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_strategy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "spike_ins_concentration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "adapter_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "includes_spike_ins", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "read_length", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "experiment_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_desc", "description": null, - "name": "updated_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "spike_ins_fasta", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "target_capture_kit_vendor", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "target_capture_kit_catalog_number", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "title", "description": null, - "name": "sequencing_center", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "constraints", "description": null, - "name": "first", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_read_group_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ + }, + "defaultValue": null + }, { - "defaultValue": null, + "name": "systemProperties", "description": null, - "name": "order_by_asc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "type", "description": null, - "name": "updated_datetime", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "project", "description": null, - "name": "with_path_to_any", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "required", "description": null, - "name": "submitter_id", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "program", "description": null, - "name": "days_to_treatment", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "submittable", "description": null, - "name": "created_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "validators", "description": null, - "name": "id", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "id", "description": null, - "name": "with_path_to", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "description", "description": null, - "name": "without_links", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "namespace", "description": null, - "name": "created_datetime", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "uniqueKeys", "description": null, - "name": "treatment_outcome", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "root", "description": null, - "name": "treatment_type", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "links", "description": null, - "name": "state", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "category", "description": null, - "name": "created_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "additionalProperties", "description": null, - "name": "order_by_desc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "properties", "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "treatment_intent_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "treatment_or_therapy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "therapeutic_agents", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_treatment", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "treatment_anatomic_site", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_treatment_end", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_treatment_start", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + }, + "defaultValue": null } ], - "deprecationReason": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "NodeType", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "viewer", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "viewer", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TransactionLog", + "description": null, + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "is_dry_run", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "closed", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "committed_by", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "state", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "quick_search", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "submitter", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "role", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "program", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "project", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_datetime", "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "canonical_json", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "project_id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, - "name": "treatment", + "deprecationReason": null + }, + { + "name": "snapshots", + "description": null, + "args": [], "type": { "kind": "LIST", "name": null, "ofType": { "kind": "OBJECT", - "name": "treatment", + "name": "TransactionSnapshot", "ofType": null } - } + }, + "isDeprecated": false, + "deprecationReason": null }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_treatment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "treatment_outcome", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "treatment_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "treatment_intent_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "treatment_or_therapy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "therapeutic_agents", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_treatment", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "treatment_anatomic_site", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_treatment_end", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_treatment_start", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "name": "documents", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TransactionDocument", + "ofType": null } - ], - "deprecationReason": null, + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "related_cases", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TransactionResponseEntityRelatedCases", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "ID", + "description": "The `ID` scalar type represents a unique identifier, often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as `\"4\"`) or integer (such as `4`) input value will be accepted as an ID.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "Boolean", + "description": "The `Boolean` scalar type represents `true` or `false`.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "String", + "description": "The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TransactionSnapshot", + "description": null, + "fields": [ + { + "name": "id", "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, "isDeprecated": false, - "name": "_treatment_count", + "deprecationReason": null + }, + { + "name": "transaction_id", + "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "Int", "ofType": null - } + }, + "isDeprecated": false, + "deprecationReason": null }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "biomarker_signal", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "run_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "cell_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "relative_nuclear_size", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "er_localization", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "relative_er_intensity", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ck_signal", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "relative_nuclear_intensity", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "cell_count", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_slide_count", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "relative_cytokeratin_intensity", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "frame_identifier", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "cell_identifier", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, + "name": "action", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "old_props", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "new_props", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "Int", + "description": "The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31 - 1) and 2^31 - 1 since represented in JSON as double-precision floating point numbers specifiedby [IEEE 754](http://en.wikipedia.org/wiki/IEEE_floating_point).", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TransactionDocument", + "description": null, + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "transaction_id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "doc_format", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "doc", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "doc_size", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "response_json", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "response", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "TransactionResponse", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TransactionResponse", + "description": null, + "fields": [ + { + "name": "transaction_id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "success", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "entity_error_count", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "transactional_error_count", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "code", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "message", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "transactional_errors", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_entity_count", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_entity_count", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "released_entity_count", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cases_related_to_updated_entities_count", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cases_related_to_created_entities_count", "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, "isDeprecated": false, - "name": "slide_count", + "deprecationReason": null + }, + { + "name": "entities", + "description": null, + "args": [], "type": { "kind": "LIST", "name": null, "ofType": { "kind": "OBJECT", - "name": "slide_count", + "name": "TransactionResponseEntity", "ofType": null } - } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TransactionResponseEntity", + "description": null, + "fields": [ + { + "name": "valid", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "biomarker_signal", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, + "name": "action", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "unique_keys", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "related_cases", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TransactionResponseEntityRelatedCases", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "errors", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TransactionResponseError", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "warnings", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TransactionResponseEntityRelatedCases", + "description": null, + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "submitter_id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TransactionResponseError", + "description": null, + "fields": [ + { + "name": "keys", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dependents", + "description": "List of entities that depend on this entity such that the transaction failed.", + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GenericEntity", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "message", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "GenericEntity", + "description": "Skeleton properties to reference generic entities", + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INTERFACE", + "name": "Node", + "description": "The query object that represents the psqlgraph.Node base", + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "submitter_id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "project_id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_datetime", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_datetime", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "data_release", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "root", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "project", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "program", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "core_metadata_collection", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "open_access_doc", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "clinical_trial_file", + "ofType": null + } + ] + }, + { + "kind": "OBJECT", + "name": "data_release", + "description": null, + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "submitter_id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "project_id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_datetime", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_datetime", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "major_version", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "minor_version", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "release_date", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "released", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "roots", + "description": null, + "args": [ + { + "name": "id", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { "name": "submitter_id", + "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "ids", "description": null, - "name": "run_name", "type": { "kind": "LIST", "name": null, @@ -9891,164 +9142,102 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "quick_search", "description": null, - "name": "created_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "first", "description": null, - "name": "id", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "offset", "description": null, - "name": "with_path_to", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_before", "description": null, - "name": "cell_type", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_after", "description": null, - "name": "without_links", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_before", "description": null, - "name": "relative_nuclear_size", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_after", "description": null, - "name": "created_datetime", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "er_localization", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "relative_er_intensity", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_asc", "description": null, - "name": "created_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, - "description": null, "name": "order_by_desc", + "description": null, "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_links", "description": null, - "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -10057,12 +9246,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, - "description": null, "name": "with_links_any", + "description": null, "type": { "kind": "LIST", "name": null, @@ -10071,50 +9260,40 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_links", "description": null, - "name": "ck_signal", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to", "description": null, - "name": "relative_nuclear_intensity", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to_any", "description": null, - "name": "without_path_to", "type": { "kind": "LIST", "name": null, @@ -10123,26 +9302,26 @@ "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_path_to", "description": null, - "name": "cell_count", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "schema_version", "description": null, - "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -10151,74 +9330,63 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, - "description": null, "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_slide_count", - "ofType": null - } - } - }, - { - "defaultValue": null, "description": null, - "name": "relative_cytokeratin_intensity", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_root", "ofType": null } - } - }, + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "root", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_roots_count", + "description": null, + "args": [ { - "defaultValue": null, + "name": "id", "description": null, - "name": "quick_search", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "submitter_id", "description": null, - "name": "frame_identifier", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "ids", "description": null, - "name": "cell_identifier", "type": { "kind": "LIST", "name": null, @@ -10227,139 +9395,102 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "quick_search", "description": null, - "name": "ids", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "first", "description": null, - "name": "updated_after", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "offset", "description": null, - "name": "first", "type": { "kind": "SCALAR", "name": "Int", "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_slide_count_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ + }, + "defaultValue": null + }, { - "defaultValue": null, + "name": "created_before", "description": null, - "name": "year_of_diagnosis", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_after", "description": null, - "name": "order_by_asc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_before", "description": null, - "name": "method_of_diagnosis", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_after", "description": null, - "name": "laterality", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_asc", "description": null, - "name": "ann_arbor_pathologic_stage", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_desc", "description": null, - "name": "submitter_id", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_links", "description": null, - "name": "vital_status", "type": { "kind": "LIST", "name": null, @@ -10368,12 +9499,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_links_any", "description": null, - "name": "morphology", "type": { "kind": "LIST", "name": null, @@ -10382,12 +9513,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_links", "description": null, - "name": "ann_arbor_clinical_stage", "type": { "kind": "LIST", "name": null, @@ -10396,64 +9527,54 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to", "description": null, - "name": "days_to_last_known_disease_status", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to_any", "description": null, - "name": "perineural_invasion_present", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_path_to", "description": null, - "name": "days_to_hiv_diagnosis", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_datetime", "description": null, - "name": "ajcc_pathologic_m", "type": { "kind": "LIST", "name": null, @@ -10462,12 +9583,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "major_version", "description": null, - "name": "days_to_last_follow_up", "type": { "kind": "LIST", "name": null, @@ -10476,26 +9597,26 @@ "name": "Float", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "minor_version", "description": null, - "name": "prior_treatment", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "name", "description": null, - "name": "ajcc_clinical_t", "type": { "kind": "LIST", "name": null, @@ -10504,12 +9625,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "release_date", "description": null, - "name": "colon_polyps_history", "type": { "kind": "LIST", "name": null, @@ -10518,26 +9639,26 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "released", "description": null, - "name": "ajcc_pathologic_n", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_datetime", "description": null, - "name": "ajcc_clinical_n", "type": { "kind": "LIST", "name": null, @@ -10546,50 +9667,69 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "not", "description": null, - "name": "ajcc_clinical_m", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_data_release", "ofType": null } - } - }, + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_transaction_logs_count", + "description": null, + "args": [ { - "defaultValue": null, + "name": "id", "description": null, - "name": "ldh_level_at_diagnosis", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "type", "description": null, - "name": "created_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "quick_search", "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { "name": "project_id", + "description": null, "type": { "kind": "LIST", "name": null, @@ -10598,64 +9738,52 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "project", "description": null, - "name": "residual_disease", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "program", "description": null, - "name": "updated_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_asc", "description": null, - "name": "without_path_to", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_desc", "description": null, - "name": "ajcc_pathologic_stage", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "related_cases", "description": null, - "name": "lymphatic_invasion_present", "type": { "kind": "LIST", "name": null, @@ -10664,54 +9792,42 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "first", "description": null, - "name": "with_links", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "last", "description": null, - "name": "progression_or_recurrence", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "offset", "description": null, - "name": "not", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_diagnosis", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "entities", "description": null, - "name": "cause_of_death", "type": { "kind": "LIST", "name": null, @@ -10720,92 +9836,105 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "is_dry_run", "description": null, - "name": "burkitt_lymphoma_clinical_variant", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "closed", "description": null, - "name": "ann_arbor_extranodal_involvement", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "committable", + "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "state", "description": null, - "name": "updated_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "committed_by", "description": null, - "name": "ajcc_clinical_stage", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_transaction_logs", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "type", "description": null, - "name": "hiv_positive", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "quick_search", "description": null, - "name": "ann_arbor_b_symptoms", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "project_id", "description": null, - "name": "classification_of_tumor", "type": { "kind": "LIST", "name": null, @@ -10814,68 +9943,52 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "project", "description": null, - "name": "last_known_disease_status", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "program", "description": null, - "name": "updated_datetime", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_asc", "description": null, - "name": "with_path_to_any", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_desc", "description": null, - "name": "primary_diagnosis", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "related_cases", "description": null, - "name": "tumor_stage", "type": { "kind": "LIST", "name": null, @@ -10884,26 +9997,42 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "first", "description": null, - "name": "age_at_diagnosis", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "entities", "description": null, - "name": "hpv_positive_type", "type": { "kind": "LIST", "name": null, @@ -10912,50 +10041,99 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "is_dry_run", "description": null, - "name": "days_to_death", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "closed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "committable", + "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "state", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "committed_by", "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TransactionLog", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_links", + "description": null, + "args": [ + { "name": "id", + "description": null, "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "submitter_id", "description": null, - "name": "with_path_to", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "ids", "description": null, - "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -10964,134 +10142,270 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "quick_search", "description": null, - "name": "created_datetime", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "first", "description": null, - "name": "vascular_invasion_present", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "10" }, { - "defaultValue": null, + "name": "offset", "description": null, - "name": "new_event_anatomic_site", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_before", "description": null, - "name": "state", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_after", "description": null, - "name": "order_by_desc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_before", "description": null, - "name": "days_to_recurrence", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_after", "description": null, - "name": "with_links_any", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_asc", "description": null, - "name": "tumor_grade", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_desc", "description": null, - "name": "figo_stage", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "project_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "category", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "Float", + "description": "The `Float` scalar type represents signed double-precision fractional values as specified by [IEEE 754](http://en.wikipedia.org/wiki/IEEE_floating_point). ", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "root", + "description": null, + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "submitter_id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "project_id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_datetime", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_datetime", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "schema_version", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "data_releases", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "submitter_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "ids", "description": null, - "name": "tissue_or_organ_of_origin", "type": { "kind": "LIST", "name": null, @@ -11100,172 +10414,186 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "quick_search", "description": null, - "name": "days_to_birth", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "first", "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { "name": "offset", + "description": null, "type": { "kind": "SCALAR", "name": "Int", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_before", "description": null, - "name": "hpv_status", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_after", "description": null, - "name": "prior_malignancy", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_before", "description": null, - "name": "new_event_type", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_after", "description": null, - "name": "quick_search", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null + }, + { + "name": "order_by_asc", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by_desc", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_links", "description": null, - "name": "days_to_new_event", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_links_any", "description": null, - "name": "circumferential_resection_margin", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_links", "description": null, - "name": "ldh_normal_range_upper", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to", "description": null, - "name": "lymph_nodes_positive", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to_any", "description": null, - "name": "ids", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_path_to", "description": null, - "name": "site_of_resection_or_biopsy", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_datetime", "description": null, - "name": "ajcc_pathologic_t", "type": { "kind": "LIST", "name": null, @@ -11274,39 +10602,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "diagnosis", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "diagnosis", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, + "name": "major_version", "description": null, - "name": "year_of_diagnosis", "type": { "kind": "LIST", "name": null, @@ -11315,36 +10616,26 @@ "name": "Float", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "minor_version", "description": null, - "name": "method_of_diagnosis", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "name", "description": null, - "name": "laterality", "type": { "kind": "LIST", "name": null, @@ -11353,12 +10644,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "release_date", "description": null, - "name": "ann_arbor_pathologic_stage", "type": { "kind": "LIST", "name": null, @@ -11367,26 +10658,26 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "released", "description": null, - "name": "submitter_id", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_datetime", "description": null, - "name": "vital_status", "type": { "kind": "LIST", "name": null, @@ -11395,26 +10686,63 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "not", "description": null, - "name": "morphology", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_data_release", "ofType": null } - } + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "data_release", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_data_releases_count", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "submitter_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "ids", "description": null, - "name": "ann_arbor_clinical_stage", "type": { "kind": "LIST", "name": null, @@ -11423,92 +10751,116 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null + }, + { + "name": "quick_search", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "offset", "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { "name": "created_before", + "description": null, "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_after", "description": null, - "name": "days_to_last_known_disease_status", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_before", "description": null, - "name": "perineural_invasion_present", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_after", "description": null, - "name": "days_to_hiv_diagnosis", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_asc", "description": null, - "name": "ajcc_pathologic_m", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_desc", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "with_links", "description": null, - "name": "days_to_last_follow_up", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_links_any", "description": null, - "name": "prior_treatment", "type": { "kind": "LIST", "name": null, @@ -11517,12 +10869,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_links", "description": null, - "name": "ajcc_clinical_t", "type": { "kind": "LIST", "name": null, @@ -11531,54 +10883,54 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to", "description": null, - "name": "colon_polyps_history", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to_any", "description": null, - "name": "ajcc_pathologic_n", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_path_to", "description": null, - "name": "ajcc_clinical_n", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "schema_version", "description": null, - "name": "ajcc_clinical_m", "type": { "kind": "LIST", "name": null, @@ -11587,50 +10939,69 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "not", "description": null, - "name": "ldh_level_at_diagnosis", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_root", "ofType": null } - } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_transaction_logs_count", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "type", "description": null, - "name": "created_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "quick_search", "description": null, - "name": "project_id", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "project_id", "description": null, - "name": "residual_disease", "type": { "kind": "LIST", "name": null, @@ -11639,64 +11010,52 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "project", "description": null, - "name": "updated_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "program", "description": null, - "name": "without_path_to", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_asc", "description": null, - "name": "ajcc_pathologic_stage", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_desc", "description": null, - "name": "lymphatic_invasion_present", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "related_cases", "description": null, - "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -11705,54 +11064,42 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "first", "description": null, - "name": "progression_or_recurrence", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "last", "description": null, - "name": "not", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_diagnosis", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "offset", "description": null, - "name": "cause_of_death", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "entities", "description": null, - "name": "burkitt_lymphoma_clinical_variant", "type": { "kind": "LIST", "name": null, @@ -11761,106 +11108,105 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "is_dry_run", "description": null, - "name": "ann_arbor_extranodal_involvement", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "closed", "description": null, - "name": "updated_after", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, - "description": null, - "name": "ajcc_clinical_stage", + "name": "committable", + "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "state", "description": null, - "name": "hiv_positive", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "committed_by", "description": null, - "name": "ann_arbor_b_symptoms", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_transaction_logs", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "type", "description": null, - "name": "classification_of_tumor", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "quick_search", "description": null, - "name": "last_known_disease_status", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "project_id", "description": null, - "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -11869,68 +11215,52 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "project", "description": null, - "name": "with_path_to_any", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "program", "description": null, - "name": "primary_diagnosis", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_asc", "description": null, - "name": "tumor_stage", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_desc", "description": null, - "name": "age_at_diagnosis", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "related_cases", "description": null, - "name": "hpv_positive_type", "type": { "kind": "LIST", "name": null, @@ -11939,50 +11269,42 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "first", "description": null, - "name": "days_to_death", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "last", "description": null, - "name": "id", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "offset", "description": null, - "name": "with_path_to", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "entities", "description": null, - "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -11991,369 +11313,99 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "is_dry_run", "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "vascular_invasion_present", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "new_event_anatomic_site", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_recurrence", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "tumor_grade", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "figo_stage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "tissue_or_organ_of_origin", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_birth", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "closed", "description": null, - "name": "offset", "type": { "kind": "SCALAR", - "name": "Int", + "name": "Boolean", "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "hpv_status", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "prior_malignancy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + }, + "defaultValue": null }, { - "defaultValue": null, - "description": null, - "name": "new_event_type", + "name": "committable", + "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "state", "description": null, - "name": "quick_search", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_new_event", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "circumferential_resection_margin", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ldh_normal_range_upper", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "lymph_nodes_positive", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "site_of_resection_or_biopsy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ajcc_pathologic_t", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "committed_by", "description": null, - "name": "first", "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null - } + }, + "defaultValue": null } ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_diagnosis_count", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TransactionLog", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null }, { + "name": "_links", + "description": null, "args": [ { - "defaultValue": null, + "name": "id", "description": null, - "name": "cigarettes_per_day", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "submitter_id", "description": null, - "name": "order_by_asc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "ids", "description": null, - "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -12362,129413 +11414,1808 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "quick_search", "description": null, - "name": "years_smoked", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "first", "description": null, - "name": "height", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "10" }, { - "defaultValue": null, + "name": "offset", "description": null, - "name": "tobacco_smoking_status", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, - "description": null, "name": "created_before", + "description": null, "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_after", "description": null, - "name": "id", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "pack_years_smoked", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "weight", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_before", "description": null, - "name": "state", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_after", "description": null, - "name": "created_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_asc", "description": null, - "name": "tobacco_smoking_onset_year", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, - "description": null, "name": "order_by_desc", + "description": null, "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, - "description": null, "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, "description": null, - "name": "updated_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "alcohol_history", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "bmi", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "category", "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_exposure", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "alcohol_intensity", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "tobacco_smoking_quit_year", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + }, + "defaultValue": null } ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "exposure", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "exposure", + "kind": "INTERFACE", + "name": "Node", "ofType": null } - } - }, + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "cigarettes_per_day", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "years_smoked", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "height", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "tobacco_smoking_status", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "pack_years_smoked", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "weight", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "tobacco_smoking_onset_year", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "alcohol_history", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "bmi", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_exposure", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "alcohol_intensity", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "tobacco_smoking_quit_year", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", "description": null, - "isDeprecated": false, - "name": "_exposure_count", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_case", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "disease_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "primary_site", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "name": "type", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null } - ], - "deprecationReason": null, + }, + "defaultValue": null + }, + { + "name": "major_version", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "minor_version", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "release_date", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "schema_version", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "administering_ic", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "availability_mechanism", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "availability_type", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "code", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "data_description", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "date_collected", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "institution", "description": null, - "isDeprecated": false, - "name": "case", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "case", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_case", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "disease_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "primary_site", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "name": "intended_release_date", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "investigator", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "investigator_affiliation", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "investigator_name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "project_title", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "releasable", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "released", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "research_focus_area", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "research_program", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "support_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "support_source", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "year_awarded", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "doc_url", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "dbgap_accession_number", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "accepts_healthy_volunteers", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "actual_enrollment", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "arm", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "arm_description", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "arm_name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "arm_type", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "brief_summary", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "brief_title", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "category", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "clinical_trial_website", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "collaborators", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "condition", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "contact", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "contributor", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "coverage", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "creator", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "data_availability_date", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "data_available", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "data_available_for_request", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "description", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "eligibility_criteria", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "enrollment", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "fda_regulated_device_product", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "fda_regulated_drug_product", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first_posted_date", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "focus", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "has_data_monitoring_committee", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "intervention_type", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "ipd_sharing_statement", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "language", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last_update_posted_date", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "location", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null } - ], - "deprecationReason": null, + }, + "defaultValue": null + }, + { + "name": "locations_removed", "description": null, - "isDeprecated": false, - "name": "_case_count", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_format", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_size", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "error_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "object_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_submitted_aligned_reads", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state_comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "md5sum", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_category", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "experimental_strategy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, + "name": "nct_number", "description": null, - "isDeprecated": false, - "name": "submitted_aligned_reads", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "submitted_aligned_reads", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_format", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_size", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "error_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "object_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_submitted_aligned_reads", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state_comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "md5sum", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_category", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "experimental_strategy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, + "name": "original_estimated_enrollment", "description": null, - "isDeprecated": false, - "name": "_submitted_aligned_reads_count", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "code", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "releasable", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "availability_mechanism", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "dbgap_accession_number", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "investigator_affiliation", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "support_source", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "investigator_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "date_collected", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "intended_release_date", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "support_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "released", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "availability_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_project", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, + "name": "primary_completion_date", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "principle_investigator", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "prs_account", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "publications", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "publisher", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "recruitment_status", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "responsible_party", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "rights", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "secondary_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "source", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "study_completion_date", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "study_design_allocation", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "study_design_intervention_model", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "study_design_masking", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "study_design_primary_purpose", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "study_phase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "study_start_date", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subject", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "submitted_date", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "title", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "us_product", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "verification_date", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "created_datetime", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "data_category", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "data_format", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "data_type", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "error_type", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "file_name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "file_size", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "file_state", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "md5sum", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "object_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "project_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "state", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "submitter_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updated_datetime", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "not", "description": null, - "isDeprecated": false, - "name": "project", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "project", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_clinical_trial_file", "ofType": null } - } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_clinical_trial_file", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "created_datetime", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "code", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "releasable", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "availability_mechanism", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "dbgap_accession_number", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "investigator_affiliation", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "support_source", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "investigator_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "date_collected", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "intended_release_date", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "support_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "released", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "availability_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_project", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, + "name": "data_category", "description": null, - "isDeprecated": false, - "name": "_project_count", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "race", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "year_of_birth", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "year_of_death", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_demographic", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "gender", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ethnicity", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "deprecationReason": null, + "name": "data_format", "description": null, - "isDeprecated": false, - "name": "demographic", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "demographic", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "race", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "year_of_birth", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "year_of_death", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_demographic", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "gender", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ethnicity", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "deprecationReason": null, + "name": "data_type", "description": null, - "isDeprecated": false, - "name": "_demographic_count", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "analyte_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_aliquot", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "concentration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "aliquot_volume", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "aliquot_quantity", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "analyte_type_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "amount", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "source_center", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "deprecationReason": null, + "name": "error_type", "description": null, - "isDeprecated": false, - "name": "aliquot", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "aliquot", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "analyte_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_aliquot", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "concentration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "aliquot_volume", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "aliquot_quantity", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "analyte_type_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "amount", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "source_center", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "deprecationReason": null, + "name": "file_name", "description": null, - "isDeprecated": false, - "name": "_aliquot_count", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "error_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_format", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_size", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "assay_instrument_model", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "object_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "assay_method", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_submitted_methylation", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state_comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "md5sum", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_category", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "assay_instrument", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, + "name": "file_size", "description": null, - "isDeprecated": false, - "name": "submitted_methylation", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "submitted_methylation", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "error_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_format", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_size", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "assay_instrument_model", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "object_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "assay_method", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_submitted_methylation", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state_comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "md5sum", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_category", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "assay_instrument", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, + "name": "file_state", "description": null, - "isDeprecated": false, - "name": "_submitted_methylation_count", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "her2_erbb2_result_ihc", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ldh_level_at_diagnosis", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "biomarker_result", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "fev1_fvc_pre_bronch_percent", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "fev1_ref_post_bronch_percent", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "dlco_ref_predictive_percent", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "her2_erbb2_percent_positive_ihc", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "biomarker_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "fev1_fvc_post_bronch_percent", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "cea_level_preoperative", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "biomarker_test_method", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "progesterone_receptor_result_ihc", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_clinical_test", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "estrogen_receptor_percent_positive_ihc", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ldh_normal_range_upper", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "estrogen_receptor_result_ihc", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "fev1_ref_pre_bronch_percent", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "her2_erbb2_result_fish", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "microsatellite_instability_abnormal", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "progesterone_receptor_percent_positive_ihc", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, + "name": "md5sum", "description": null, - "isDeprecated": false, - "name": "clinical_test", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "clinical_test", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "her2_erbb2_result_ihc", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ldh_level_at_diagnosis", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "biomarker_result", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "fev1_fvc_pre_bronch_percent", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "fev1_ref_post_bronch_percent", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "dlco_ref_predictive_percent", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "her2_erbb2_percent_positive_ihc", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "biomarker_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "fev1_fvc_post_bronch_percent", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "cea_level_preoperative", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "biomarker_test_method", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "progesterone_receptor_result_ihc", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_clinical_test", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "estrogen_receptor_percent_positive_ihc", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ldh_normal_range_upper", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "estrogen_receptor_result_ihc", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "fev1_ref_pre_bronch_percent", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "her2_erbb2_result_fish", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "microsatellite_instability_abnormal", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "progesterone_receptor_percent_positive_ihc", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, + "name": "object_id", "description": null, - "isDeprecated": false, - "name": "_clinical_test_count", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "type_of_sample", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "somatic_mutations_identified", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "marker_panel_description", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "experimental_intent", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "type_of_specimen", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "type_of_data", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "associated_experiment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "copy_numbers_identified", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_experiment", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "number_samples_per_experimental_group", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "number_experimental_group", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_description", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "indels_identified", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "experimental_description", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, + "name": "project_id", "description": null, - "isDeprecated": false, - "name": "experiment", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "experiment", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "type_of_sample", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "somatic_mutations_identified", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "marker_panel_description", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "experimental_intent", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "type_of_specimen", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "type_of_data", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "associated_experiment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "copy_numbers_identified", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_experiment", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "number_samples_per_experimental_group", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "number_experimental_group", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_description", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "indels_identified", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "experimental_description", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, + "name": "state", "description": null, - "isDeprecated": false, - "name": "_experiment_count", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_format", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_size", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "error_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "object_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_submitted_unaligned_reads", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state_comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "md5sum", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_category", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "experimental_strategy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, + "name": "submitter_id", "description": null, - "isDeprecated": false, - "name": "submitted_unaligned_reads", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "submitted_unaligned_reads", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_format", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_size", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "error_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "object_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_submitted_unaligned_reads", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state_comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "md5sum", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_category", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "experimental_strategy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, + "name": "updated_datetime", "description": null, - "isDeprecated": false, - "name": "_submitted_unaligned_reads_count", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_data_release", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "created_datetime", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "percent_tumor_nuclei", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "run_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_necrosis", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_granulocyte_infiltration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_inflam_infiltration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "apoptotic_concentration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_normal_cells", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ctc_concentration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "methanol_added", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "section_location", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ctc_low_concentration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "number_proliferating_cells", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ctc_small_concentration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_monocyte_infiltration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_lymphocyte_infiltration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_neutrophil_infiltration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "run_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_slide", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_stromal_cells", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "number_nucleated_cells", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_eosinophil_infiltration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "slide_identifier", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_tumor_cells", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, + "name": "major_version", "description": null, - "isDeprecated": false, - "name": "slide", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "slide", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "percent_tumor_nuclei", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "run_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_necrosis", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_granulocyte_infiltration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_inflam_infiltration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "apoptotic_concentration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_normal_cells", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ctc_concentration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "methanol_added", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "section_location", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ctc_low_concentration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "number_proliferating_cells", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ctc_small_concentration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_monocyte_infiltration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_lymphocyte_infiltration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_neutrophil_infiltration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "run_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_slide", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_stromal_cells", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "number_nucleated_cells", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_eosinophil_infiltration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "slide_identifier", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_tumor_cells", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, + "name": "minor_version", "description": null, - "isDeprecated": false, - "name": "_slide_count", "type": { "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "keyword_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_keyword", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "keyword", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "keyword", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "keyword_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_keyword", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_keyword_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_format", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_size", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "error_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "object_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_aligned_reads_index", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state_comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "md5sum", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_category", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "aligned_reads_index", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "aligned_reads_index", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_format", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_size", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "error_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "object_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_aligned_reads_index", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state_comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "md5sum", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_category", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_aligned_reads_index_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "run_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_size", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "protocol_used", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "cell_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "error_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "object_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "panel_used", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "cell_count", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_slide_image", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state_comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_format", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "frame_identifier", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "cell_identifier", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "md5sum", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_category", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "experimental_strategy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "slide_image", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "slide_image", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "run_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_size", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "protocol_used", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "cell_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "error_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "object_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "panel_used", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "cell_count", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_slide_image", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state_comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_format", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "frame_identifier", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "cell_identifier", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "md5sum", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_category", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "experimental_strategy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_slide_image_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "schema_version", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_root", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "root", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "root", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "schema_version", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_root", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_root_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "creator", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_core_metadata_collection", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "relation", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "contributor", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "subject", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "title", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "format", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "source", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "description", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "coverage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "date", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "language", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "rights", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "publisher", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "core_metadata_collection", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "core_metadata_collection", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "creator", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_core_metadata_collection", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "relation", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "contributor", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "subject", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "title", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "format", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "source", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "description", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "coverage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "date", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "language", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "rights", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "publisher", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_core_metadata_collection_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "relationship_gender", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_family_history", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "relationship_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "relative_with_cancer_history", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "relationship_primary_diagnosis", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "relationship_age_at_diagnosis", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "family_history", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "family_history", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "relationship_gender", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_family_history", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "relationship_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "relative_with_cancer_history", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "relationship_primary_diagnosis", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "relationship_age_at_diagnosis", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_family_history_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "sample_type_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "biospecimen_anatomic_site", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "oct_embedded", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "tumor_code_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "intermediate_dimension", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "sample_volume", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_ffpe", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "tumor_descriptor", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "sample_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "time_between_excision_and_freezing", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "shortest_dimension", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "diagnosis_pathologically_confirmed", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "current_weight", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "composition", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "time_between_clamping_and_freezing", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "method_of_sample_procurement", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "tumor_code", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "tissue_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_sample", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_sample_procurement", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "freezing_method", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "preservation_method", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_collection", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "initial_weight", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "longest_dimension", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "sample", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "sample", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "sample_type_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "biospecimen_anatomic_site", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "oct_embedded", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "tumor_code_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "intermediate_dimension", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "sample_volume", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_ffpe", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "tumor_descriptor", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "sample_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "time_between_excision_and_freezing", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "shortest_dimension", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "diagnosis_pathologically_confirmed", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "current_weight", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "composition", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "time_between_clamping_and_freezing", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "method_of_sample_procurement", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "tumor_code", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "tissue_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_sample", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_sample_procurement", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "freezing_method", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "preservation_method", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_collection", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "initial_weight", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "longest_dimension", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_sample_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "md5sum", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_category", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_size", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_format", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "of_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "state_comment", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "error_type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "object_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": "10", - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "datanode", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DataNode", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "viewer", - "type": { - "kind": "OBJECT", - "name": "viewer", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "Root", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "is_dry_run", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "closed", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "committed_by", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "submitter", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "role", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "program", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "project", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "created_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "canonical_json", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "snapshots", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TransactionSnapshot", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "documents", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TransactionDocument", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "related_cases", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TransactionResponseEntityRelatedCases", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "TransactionLog", - "possibleTypes": null - }, - { - "description": "The `ID` scalar type represents a unique identifier, often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as `\"4\"`) or integer (such as `4`) input value will be accepted as an ID.", - "enumValues": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "SCALAR", - "name": "ID", - "possibleTypes": null - }, - { - "description": "The `Boolean` scalar type represents `true` or `false`.", - "enumValues": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "SCALAR", - "name": "Boolean", - "possibleTypes": null - }, - { - "description": "The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.", - "enumValues": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "SCALAR", - "name": "String", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "transaction_id", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "action", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "old_props", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "new_props", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "TransactionSnapshot", - "possibleTypes": null - }, - { - "description": "The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^53 - 1) and 2^53 - 1 since represented in JSON as double-precision floating point numbers specifiedby [IEEE 754](http://en.wikipedia.org/wiki/IEEE_floating_point).", - "enumValues": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "SCALAR", - "name": "Int", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "transaction_id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "doc_format", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "doc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "doc_size", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "response_json", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "response", - "type": { - "kind": "OBJECT", - "name": "TransactionResponse", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "TransactionDocument", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "transaction_id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "success", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "entity_error_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "transactional_error_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "code", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "message", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "transactional_errors", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "created_entity_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "updated_entity_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "released_entity_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "cases_related_to_updated_entities_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "cases_related_to_created_entities_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "entities", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TransactionResponseEntity", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "TransactionResponse", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "valid", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "action", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "unique_keys", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "related_cases", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TransactionResponseEntityRelatedCases", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "errors", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TransactionResponseError", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "warnings", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "TransactionResponseEntity", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "submitter_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "TransactionResponseEntityRelatedCases", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "keys", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": "List of entities that depend on this entity such that the transaction failed.", - "isDeprecated": false, - "name": "dependents", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "GenericEntity", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "message", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "TransactionResponseError", - "possibleTypes": null - }, - { - "description": "Skeleton properties to reference generic entities", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "GenericEntity", - "possibleTypes": null - }, - { - "description": "The query object that represents the psqlgraph.Node base", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "created_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "updated_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": null, - "kind": "INTERFACE", - "name": "Node", - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "experimental_metadata", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "experiment", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "case", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "diagnosis", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "treatment", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "sample", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "slide", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "slide_count", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "slide_image", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "core_metadata_collection", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "submitted_aligned_reads", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "read_group", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "submitted_copy_number", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "aliquot", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "submitted_methylation", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "submitted_somatic_mutation", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "read_group_qc", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "submitted_unaligned_reads", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "aligned_reads_index", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "project", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "program", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "publication", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "keyword", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "acknowledgement", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "clinical_test", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "demographic", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "family_history", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "exposure", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "data_release", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "root", - "ofType": null - } - ] - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "created_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "updated_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "md5sum", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "data_type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "file_name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "error_type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "data_format", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "object_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "submitter_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "data_category", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "file_size", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "state_comment", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "file_state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "type_of_sample", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "somatic_mutations_identified", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "marker_panel_description", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "experimental_intent", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "type_of_specimen", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "type_of_data", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "associated_experiment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "copy_numbers_identified", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_experiment", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "number_samples_per_experimental_group", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "number_experimental_group", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_description", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "indels_identified", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "experimental_description", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "experiments", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "experiment", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_format", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_size", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "error_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "object_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_experimental_metadata", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state_comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "md5sum", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_category", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_experiments_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", - "name": "committable", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_dry_run", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "committed_by", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "entities", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "program", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "closed", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "related_cases", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_transaction_logs_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", - "name": "committable", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_dry_run", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "committed_by", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "entities", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "program", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "closed", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "related_cases", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_transaction_logs", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TransactionLog", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": "10", - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "kind": "OBJECT", - "name": "experimental_metadata", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "created_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "updated_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "associated_experiment", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "copy_numbers_identified", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "number_samples_per_experimental_group", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "indels_identified", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "marker_panel_description", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "number_experimental_group", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "experimental_intent", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "type_of_sample", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "data_description", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "type_of_data", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "submitter_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "somatic_mutations_identified", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "type_of_specimen", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "experimental_description", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_case", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "disease_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "primary_site", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "cases", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "case", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_format", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_size", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "error_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "object_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_experimental_metadata", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state_comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "md5sum", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_category", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "experiment_metadata_files", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "experimental_metadata", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "code", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "releasable", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "availability_mechanism", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "dbgap_accession_number", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "investigator_affiliation", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "support_source", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "investigator_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "date_collected", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "intended_release_date", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "support_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "released", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "availability_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_project", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "projects", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "project", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "type_of_sample", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "somatic_mutations_identified", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "marker_panel_description", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "experimental_intent", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "type_of_specimen", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "type_of_data", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "associated_experiment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "copy_numbers_identified", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_experiment", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "number_samples_per_experimental_group", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "number_experimental_group", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_description", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "indels_identified", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "experimental_description", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_cases_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "type_of_sample", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "somatic_mutations_identified", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "marker_panel_description", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "experimental_intent", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "type_of_specimen", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "type_of_data", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "associated_experiment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "copy_numbers_identified", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_experiment", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "number_samples_per_experimental_group", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "number_experimental_group", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_description", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "indels_identified", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "experimental_description", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_experiment_metadata_files_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "type_of_sample", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "somatic_mutations_identified", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "marker_panel_description", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "experimental_intent", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "type_of_specimen", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "type_of_data", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "associated_experiment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "copy_numbers_identified", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_experiment", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "number_samples_per_experimental_group", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "number_experimental_group", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_description", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "indels_identified", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "experimental_description", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_projects_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", - "name": "committable", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_dry_run", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "committed_by", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "entities", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "program", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "closed", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "related_cases", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_transaction_logs_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", - "name": "committable", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_dry_run", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "committed_by", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "entities", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "program", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "closed", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "related_cases", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_transaction_logs", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TransactionLog", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": "10", - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "kind": "OBJECT", - "name": "experiment", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "created_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "updated_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "disease_type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "submitter_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "primary_site", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "year_of_diagnosis", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "method_of_diagnosis", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "laterality", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ann_arbor_pathologic_stage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "vital_status", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "morphology", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ann_arbor_clinical_stage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_last_known_disease_status", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "perineural_invasion_present", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_hiv_diagnosis", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ajcc_pathologic_m", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_last_follow_up", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "prior_treatment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ajcc_clinical_t", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "colon_polyps_history", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ajcc_pathologic_n", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ajcc_clinical_n", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ajcc_clinical_m", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ldh_level_at_diagnosis", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "residual_disease", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ajcc_pathologic_stage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "lymphatic_invasion_present", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "progression_or_recurrence", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_diagnosis", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "cause_of_death", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "burkitt_lymphoma_clinical_variant", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ann_arbor_extranodal_involvement", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ajcc_clinical_stage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "hiv_positive", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ann_arbor_b_symptoms", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "classification_of_tumor", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "last_known_disease_status", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "primary_diagnosis", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "tumor_stage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "age_at_diagnosis", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "hpv_positive_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_death", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "vascular_invasion_present", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "new_event_anatomic_site", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_recurrence", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "tumor_grade", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "figo_stage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "tissue_or_organ_of_origin", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_birth", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "hpv_status", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "prior_malignancy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "new_event_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_new_event", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "circumferential_resection_margin", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ldh_normal_range_upper", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "lymph_nodes_positive", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "site_of_resection_or_biopsy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ajcc_pathologic_t", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "diagnoses", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "diagnosis", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "her2_erbb2_result_ihc", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ldh_level_at_diagnosis", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "biomarker_result", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "fev1_fvc_pre_bronch_percent", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "fev1_ref_post_bronch_percent", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "dlco_ref_predictive_percent", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "her2_erbb2_percent_positive_ihc", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "biomarker_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "fev1_fvc_post_bronch_percent", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "cea_level_preoperative", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "biomarker_test_method", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "progesterone_receptor_result_ihc", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_clinical_test", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "estrogen_receptor_percent_positive_ihc", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ldh_normal_range_upper", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "estrogen_receptor_result_ihc", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "fev1_ref_pre_bronch_percent", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "her2_erbb2_result_fish", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "microsatellite_instability_abnormal", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "progesterone_receptor_percent_positive_ihc", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "clinical_tests", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "clinical_test", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "race", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "year_of_birth", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "year_of_death", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_demographic", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "gender", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ethnicity", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "demographics", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "demographic", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "type_of_sample", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "somatic_mutations_identified", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "marker_panel_description", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "experimental_intent", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "type_of_specimen", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "type_of_data", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "associated_experiment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "copy_numbers_identified", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_experiment", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "number_samples_per_experimental_group", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "number_experimental_group", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_description", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "indels_identified", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "experimental_description", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "experiments", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "experiment", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "relationship_gender", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_family_history", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "relationship_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "relative_with_cancer_history", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "relationship_primary_diagnosis", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "relationship_age_at_diagnosis", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "family_histories", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "family_history", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "sample_type_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "biospecimen_anatomic_site", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "oct_embedded", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "tumor_code_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "intermediate_dimension", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "sample_volume", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_ffpe", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "tumor_descriptor", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "sample_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "time_between_excision_and_freezing", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "shortest_dimension", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "diagnosis_pathologically_confirmed", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "current_weight", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "composition", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "time_between_clamping_and_freezing", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "method_of_sample_procurement", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "tumor_code", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "tissue_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_sample", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_sample_procurement", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "freezing_method", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "preservation_method", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_collection", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "initial_weight", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "longest_dimension", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "samples", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "sample", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "cigarettes_per_day", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "years_smoked", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "height", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "tobacco_smoking_status", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "pack_years_smoked", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "weight", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "tobacco_smoking_onset_year", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "alcohol_history", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "bmi", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_exposure", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "alcohol_intensity", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "tobacco_smoking_quit_year", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "exposures", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "exposure", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_case", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "disease_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "primary_site", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_diagnoses_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_case", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "disease_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "primary_site", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_clinical_tests_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_case", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "disease_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "primary_site", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_demographics_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_case", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "disease_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "primary_site", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_experiments_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_case", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "disease_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "primary_site", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_family_histories_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_case", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "disease_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "primary_site", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_samples_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_case", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "disease_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "primary_site", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_exposures_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", - "name": "committable", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_dry_run", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "committed_by", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "entities", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "program", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "closed", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "related_cases", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_transaction_logs_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", - "name": "committable", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_dry_run", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "committed_by", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "entities", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "program", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "closed", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "related_cases", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_transaction_logs", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TransactionLog", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": "10", - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "kind": "OBJECT", - "name": "case", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "created_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "updated_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ann_arbor_b_symptoms", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "year_of_diagnosis", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "classification_of_tumor", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "last_known_disease_status", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "method_of_diagnosis", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "laterality", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ann_arbor_pathologic_stage", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "vital_status", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "primary_diagnosis", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "submitter_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "tumor_stage", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "age_at_diagnosis", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "hpv_positive_type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "days_to_death", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "morphology", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ann_arbor_clinical_stage", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "new_event_anatomic_site", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "days_to_last_known_disease_status", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "perineural_invasion_present", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "days_to_hiv_diagnosis", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ajcc_clinical_n", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ajcc_pathologic_t", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "prior_treatment", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ajcc_clinical_t", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "colon_polyps_history", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ajcc_clinical_m", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ajcc_pathologic_m", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ajcc_pathologic_n", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ldh_level_at_diagnosis", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "days_to_last_follow_up", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "residual_disease", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "days_to_recurrence", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "tumor_grade", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "figo_stage", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "cause_of_death", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "lymphatic_invasion_present", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "tissue_or_organ_of_origin", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "hpv_status", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "days_to_birth", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "progression_or_recurrence", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "days_to_new_event", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "prior_malignancy", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "vascular_invasion_present", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "new_event_type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ajcc_pathologic_stage", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "burkitt_lymphoma_clinical_variant", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "circumferential_resection_margin", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ldh_normal_range_upper", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ann_arbor_extranodal_involvement", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "lymph_nodes_positive", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "site_of_resection_or_biopsy", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ajcc_clinical_stage", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "hiv_positive", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_case", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "disease_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "primary_site", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "cases", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "case", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_treatment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "treatment_outcome", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "treatment_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "treatment_intent_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "treatment_or_therapy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "therapeutic_agents", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_treatment", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "treatment_anatomic_site", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_treatment_end", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_treatment_start", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "treatments", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "treatment", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "sample_type_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "biospecimen_anatomic_site", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "oct_embedded", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "tumor_code_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "intermediate_dimension", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "sample_volume", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_ffpe", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "tumor_descriptor", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "sample_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "time_between_excision_and_freezing", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "shortest_dimension", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "diagnosis_pathologically_confirmed", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "current_weight", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "composition", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "time_between_clamping_and_freezing", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "method_of_sample_procurement", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "tumor_code", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "tissue_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_sample", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_sample_procurement", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "freezing_method", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "preservation_method", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_collection", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "initial_weight", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "longest_dimension", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "samples", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "sample", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "her2_erbb2_result_ihc", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ldh_level_at_diagnosis", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "biomarker_result", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "fev1_fvc_pre_bronch_percent", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "fev1_ref_post_bronch_percent", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "dlco_ref_predictive_percent", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "her2_erbb2_percent_positive_ihc", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "biomarker_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "fev1_fvc_post_bronch_percent", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "cea_level_preoperative", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "biomarker_test_method", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "progesterone_receptor_result_ihc", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_clinical_test", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "estrogen_receptor_percent_positive_ihc", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ldh_normal_range_upper", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "estrogen_receptor_result_ihc", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "fev1_ref_pre_bronch_percent", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "her2_erbb2_result_fish", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "microsatellite_instability_abnormal", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "progesterone_receptor_percent_positive_ihc", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "clinical_tests", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "clinical_test", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "year_of_diagnosis", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "method_of_diagnosis", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "laterality", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ann_arbor_pathologic_stage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "vital_status", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "morphology", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ann_arbor_clinical_stage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_last_known_disease_status", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "perineural_invasion_present", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_hiv_diagnosis", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ajcc_pathologic_m", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_last_follow_up", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "prior_treatment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ajcc_clinical_t", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "colon_polyps_history", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ajcc_pathologic_n", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ajcc_clinical_n", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ajcc_clinical_m", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ldh_level_at_diagnosis", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "residual_disease", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ajcc_pathologic_stage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "lymphatic_invasion_present", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "progression_or_recurrence", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_diagnosis", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "cause_of_death", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "burkitt_lymphoma_clinical_variant", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ann_arbor_extranodal_involvement", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ajcc_clinical_stage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "hiv_positive", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ann_arbor_b_symptoms", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "classification_of_tumor", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "last_known_disease_status", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "primary_diagnosis", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "tumor_stage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "age_at_diagnosis", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "hpv_positive_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_death", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "vascular_invasion_present", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "new_event_anatomic_site", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_recurrence", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "tumor_grade", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "figo_stage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "tissue_or_organ_of_origin", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_birth", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "hpv_status", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "prior_malignancy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "new_event_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_new_event", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "circumferential_resection_margin", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ldh_normal_range_upper", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "lymph_nodes_positive", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "site_of_resection_or_biopsy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ajcc_pathologic_t", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_cases_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "year_of_diagnosis", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "method_of_diagnosis", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "laterality", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ann_arbor_pathologic_stage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "vital_status", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "morphology", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ann_arbor_clinical_stage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_last_known_disease_status", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "perineural_invasion_present", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_hiv_diagnosis", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ajcc_pathologic_m", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_last_follow_up", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "prior_treatment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ajcc_clinical_t", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "colon_polyps_history", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ajcc_pathologic_n", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ajcc_clinical_n", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ajcc_clinical_m", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ldh_level_at_diagnosis", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "residual_disease", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ajcc_pathologic_stage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "lymphatic_invasion_present", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "progression_or_recurrence", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_diagnosis", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "cause_of_death", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "burkitt_lymphoma_clinical_variant", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ann_arbor_extranodal_involvement", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ajcc_clinical_stage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "hiv_positive", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ann_arbor_b_symptoms", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "classification_of_tumor", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "last_known_disease_status", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "primary_diagnosis", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "tumor_stage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "age_at_diagnosis", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "hpv_positive_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_death", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "vascular_invasion_present", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "new_event_anatomic_site", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_recurrence", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "tumor_grade", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "figo_stage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "tissue_or_organ_of_origin", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_birth", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "hpv_status", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "prior_malignancy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "new_event_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_new_event", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "circumferential_resection_margin", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ldh_normal_range_upper", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "lymph_nodes_positive", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "site_of_resection_or_biopsy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ajcc_pathologic_t", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_treatments_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "year_of_diagnosis", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "method_of_diagnosis", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "laterality", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ann_arbor_pathologic_stage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "vital_status", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "morphology", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ann_arbor_clinical_stage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_last_known_disease_status", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "perineural_invasion_present", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_hiv_diagnosis", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ajcc_pathologic_m", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_last_follow_up", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "prior_treatment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ajcc_clinical_t", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "colon_polyps_history", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ajcc_pathologic_n", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ajcc_clinical_n", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ajcc_clinical_m", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ldh_level_at_diagnosis", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "residual_disease", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ajcc_pathologic_stage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "lymphatic_invasion_present", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "progression_or_recurrence", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_diagnosis", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "cause_of_death", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "burkitt_lymphoma_clinical_variant", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ann_arbor_extranodal_involvement", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ajcc_clinical_stage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "hiv_positive", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ann_arbor_b_symptoms", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "classification_of_tumor", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "last_known_disease_status", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "primary_diagnosis", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "tumor_stage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "age_at_diagnosis", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "hpv_positive_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_death", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "vascular_invasion_present", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "new_event_anatomic_site", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_recurrence", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "tumor_grade", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "figo_stage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "tissue_or_organ_of_origin", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_birth", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "hpv_status", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "prior_malignancy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "new_event_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_new_event", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "circumferential_resection_margin", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ldh_normal_range_upper", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "lymph_nodes_positive", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "site_of_resection_or_biopsy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ajcc_pathologic_t", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_samples_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "year_of_diagnosis", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "method_of_diagnosis", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "laterality", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ann_arbor_pathologic_stage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "vital_status", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "morphology", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ann_arbor_clinical_stage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_last_known_disease_status", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "perineural_invasion_present", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_hiv_diagnosis", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ajcc_pathologic_m", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_last_follow_up", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "prior_treatment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ajcc_clinical_t", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "colon_polyps_history", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ajcc_pathologic_n", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ajcc_clinical_n", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ajcc_clinical_m", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ldh_level_at_diagnosis", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "residual_disease", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ajcc_pathologic_stage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "lymphatic_invasion_present", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "progression_or_recurrence", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_diagnosis", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "cause_of_death", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "burkitt_lymphoma_clinical_variant", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ann_arbor_extranodal_involvement", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ajcc_clinical_stage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "hiv_positive", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ann_arbor_b_symptoms", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "classification_of_tumor", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "last_known_disease_status", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "primary_diagnosis", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "tumor_stage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "age_at_diagnosis", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "hpv_positive_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_death", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "vascular_invasion_present", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "new_event_anatomic_site", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_recurrence", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "tumor_grade", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "figo_stage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "tissue_or_organ_of_origin", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_birth", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "hpv_status", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "prior_malignancy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "new_event_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_new_event", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "circumferential_resection_margin", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ldh_normal_range_upper", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "lymph_nodes_positive", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "site_of_resection_or_biopsy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ajcc_pathologic_t", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_clinical_tests_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", - "name": "committable", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_dry_run", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "committed_by", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "entities", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "program", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "closed", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "related_cases", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_transaction_logs_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", - "name": "committable", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_dry_run", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "committed_by", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "entities", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "program", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "closed", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "related_cases", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_transaction_logs", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TransactionLog", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": "10", - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "kind": "OBJECT", - "name": "diagnosis", - "possibleTypes": null - }, - { - "description": "The `Float` scalar type represents signed double-precision fractional values as specified by [IEEE 754](http://en.wikipedia.org/wiki/IEEE_floating_point). ", - "enumValues": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "SCALAR", - "name": "Float", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "type", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "publisher", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "description", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "creator", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "format", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "rights", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "contributor", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "language", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "relation", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "source", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "coverage", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "date", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "title", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "subject", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "relative_nuclear_intensity", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "relative_nuclear_size", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "er_localization", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ck_signal", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "biomarker_signal", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "relative_cytokeratin_intensity", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "relative_er_intensity", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "associated_experiment", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "copy_numbers_identified", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "experimental_description", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "indels_identified", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "marker_panel_description", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "experimental_intent", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "type_of_sample", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "number_samples_per_experimental_group", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "somatic_mutations_identified", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "type_of_specimen", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "type_of_data", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "number_experimental_group", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_description", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "aliquot_quantity", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "aliquot_volume", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "amount", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "analyte_type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "analyte_type_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "concentration", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "source_center", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "assay_method", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "assay_instrument_model", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "assay_instrument", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_aligned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "encoding", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "sequence_duplication_levels", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "basic_statistics", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "per_base_sequence_content", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "kmer_content", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_gc_content", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "per_tile_sequence_quality", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "per_sequence_gc_content", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "per_base_n_content", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "workflow_end_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "adapter_content", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "per_base_sequence_quality", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "fastq_name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "workflow_link", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "total_sequences", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "total_aligned_reads", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "sequence_length_distribution", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "per_sequence_quality_score", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "workflow_type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "overrepresented_sequences", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "workflow_start_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "workflow_version", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "sample_type_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "time_between_excision_and_freezing", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "oct_embedded", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "tumor_code_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "intermediate_dimension", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "sample_volume", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_ffpe", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "tumor_descriptor", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "sample_type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "biospecimen_anatomic_site", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "diagnosis_pathologically_confirmed", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "current_weight", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "composition", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "time_between_clamping_and_freezing", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "shortest_dimension", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "tumor_code", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "method_of_sample_procurement", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "tissue_type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_sample_procurement", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "freezing_method", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "preservation_method", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_collection", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "initial_weight", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "longest_dimension", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ann_arbor_b_symptoms", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "year_of_diagnosis", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "classification_of_tumor", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last_known_disease_status", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "method_of_diagnosis", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "laterality", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ann_arbor_pathologic_stage", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "primary_diagnosis", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "tumor_stage", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "age_at_diagnosis", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "hpv_positive_type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "vital_status", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "morphology", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ann_arbor_clinical_stage", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "new_event_anatomic_site", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_last_known_disease_status", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "perineural_invasion_present", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_hiv_diagnosis", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ajcc_pathologic_m", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ajcc_pathologic_t", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "prior_treatment", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ajcc_clinical_t", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "colon_polyps_history", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ajcc_pathologic_n", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ajcc_pathologic_stage", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ajcc_clinical_n", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ajcc_clinical_m", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "burkitt_lymphoma_clinical_variant", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "residual_disease", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_recurrence", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "tumor_grade", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "figo_stage", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "cause_of_death", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "lymphatic_invasion_present", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "tissue_or_organ_of_origin", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_birth", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "progression_or_recurrence", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "hpv_status", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "prior_malignancy", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "new_event_type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_death", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_new_event", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "circumferential_resection_margin", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ann_arbor_extranodal_involvement", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "lymph_nodes_positive", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "hiv_positive", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "site_of_resection_or_biopsy", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_last_follow_up", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ajcc_clinical_stage", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "vascular_invasion_present", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "protocol_used", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "cell_type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "panel_used", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "cell_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "frame_identifier", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "cell_identifier", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "total_variants", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "cigarettes_per_day", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "weight", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "alcohol_history", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "alcohol_intensity", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "bmi", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "years_smoked", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "tobacco_smoking_quit_year", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "tobacco_smoking_onset_year", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "tobacco_smoking_status", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "pack_years_smoked", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "disease_type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "primary_site", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "md5sum", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "error_type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_format", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "object_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_category", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_size", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "state_comment", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "experimental_strategy", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "relationship_primary_diagnosis", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "relative_with_cancer_history", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "relationship_gender", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "relationship_type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "relationship_age_at_diagnosis", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "doi", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "pmid", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "keyword_name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "acknowledgee", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "her2_erbb2_result_ihc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "fev1_fvc_pre_bronch_percent", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "fev1_ref_post_bronch_percent", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "fev1_fvc_post_bronch_percent", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "dlco_ref_predictive_percent", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "her2_erbb2_percent_positive_ihc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "biomarker_test_method", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ldh_level_at_diagnosis", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "progesterone_receptor_percent_positive_ihc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "cea_level_preoperative", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "biomarker_name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "progesterone_receptor_result_ihc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "biomarker_result", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "estrogen_receptor_percent_positive_ihc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ldh_normal_range_upper", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "estrogen_receptor_result_ihc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "fev1_ref_pre_bronch_percent", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "her2_erbb2_result_fish", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "microsatellite_instability_abnormal", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "gender", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "year_of_birth", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "race", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ethnicity", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "year_of_death", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "date_collected", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "code", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "intended_release_date", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "investigator_affiliation", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "availability_mechanism", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "support_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "releasable", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "support_source", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "availability_type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "investigator_name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_tumor_nuclei", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "run_name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_necrosis", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_granulocyte_infiltration", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_inflam_infiltration", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "apoptotic_concentration", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_normal_cells", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ctc_concentration", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "methanol_added", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "section_location", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ctc_low_concentration", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "number_proliferating_cells", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ctc_small_concentration", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_monocyte_infiltration", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_lymphocyte_infiltration", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_neutrophil_infiltration", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "run_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_stromal_cells", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "number_nucleated_cells", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_eosinophil_infiltration", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "slide_identifier", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_tumor_cells", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "dbgap_accession_number", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_treatment_start", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "treatment_type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_treatment", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "therapeutic_agents", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_treatment_end", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "treatment_anatomic_site", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "treatment_outcome", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "treatment_intent_type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "treatment_or_therapy", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "release_date", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "major_version", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "minor_version", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "released", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_paired_end", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "size_selection_range", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "adapter_sequence", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_strand", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_preparation_kit_name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "spike_ins_fasta", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "target_capture_kit_name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "base_caller_name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_preparation_kit_version", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "spike_ins_concentration", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "sequencing_date", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "to_trim_adapter_sequence", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "RIN", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "platform", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "barcoding_applied", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_selection", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_preparation_kit_catalog_number", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "sequencing_center", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "target_capture_kit_target_region", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "target_capture_kit_version", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "adapter_name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "read_group_name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_preparation_kit_vendor", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_strategy", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "target_capture_kit_catalog_number", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "instrument_model", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "includes_spike_ins", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "read_length", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "experiment_name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "flow_cell_barcode", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "target_capture_kit_vendor", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "base_caller_version", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_root", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "schema_version", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "schema_version", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_root", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "disease_type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "primary_site", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_case", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "created_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "updated_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "days_to_treatment_start", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "treatment_type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "therapeutic_agents", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "submitter_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "days_to_treatment", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "treatment_intent_type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "treatment_anatomic_site", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "treatment_outcome", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "days_to_treatment_end", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "treatment_or_therapy", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "year_of_diagnosis", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "method_of_diagnosis", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "laterality", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ann_arbor_pathologic_stage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "vital_status", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "morphology", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ann_arbor_clinical_stage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_last_known_disease_status", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "perineural_invasion_present", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_hiv_diagnosis", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ajcc_pathologic_m", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_last_follow_up", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "prior_treatment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ajcc_clinical_t", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "colon_polyps_history", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ajcc_pathologic_n", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ajcc_clinical_n", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ajcc_clinical_m", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ldh_level_at_diagnosis", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "residual_disease", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ajcc_pathologic_stage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "lymphatic_invasion_present", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "progression_or_recurrence", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_diagnosis", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "cause_of_death", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "burkitt_lymphoma_clinical_variant", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ann_arbor_extranodal_involvement", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ajcc_clinical_stage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "hiv_positive", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ann_arbor_b_symptoms", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "classification_of_tumor", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "last_known_disease_status", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "primary_diagnosis", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "tumor_stage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "age_at_diagnosis", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "hpv_positive_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_death", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "vascular_invasion_present", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "new_event_anatomic_site", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_recurrence", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "tumor_grade", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "figo_stage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "tissue_or_organ_of_origin", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_birth", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "hpv_status", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "prior_malignancy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "new_event_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_new_event", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "circumferential_resection_margin", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ldh_normal_range_upper", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "lymph_nodes_positive", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "site_of_resection_or_biopsy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ajcc_pathologic_t", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "diagnoses", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "diagnosis", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_treatment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "treatment_outcome", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "treatment_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "treatment_intent_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "treatment_or_therapy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "therapeutic_agents", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_treatment", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "treatment_anatomic_site", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_treatment_end", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_treatment_start", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_diagnoses_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", - "name": "committable", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_dry_run", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "committed_by", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "entities", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "program", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "closed", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "related_cases", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_transaction_logs_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", - "name": "committable", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_dry_run", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "committed_by", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "entities", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "program", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "closed", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "related_cases", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_transaction_logs", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TransactionLog", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": "10", - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "kind": "OBJECT", - "name": "treatment", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "ann_arbor_b_symptoms", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "year_of_diagnosis", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "classification_of_tumor", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last_known_disease_status", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "method_of_diagnosis", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "laterality", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ann_arbor_pathologic_stage", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "vital_status", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "primary_diagnosis", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "tumor_stage", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "age_at_diagnosis", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "hpv_positive_type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_death", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "morphology", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ann_arbor_clinical_stage", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "new_event_anatomic_site", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_last_known_disease_status", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "perineural_invasion_present", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_hiv_diagnosis", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ajcc_clinical_n", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ajcc_pathologic_t", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "prior_treatment", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ajcc_clinical_t", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "colon_polyps_history", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ajcc_clinical_m", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ajcc_pathologic_m", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ajcc_pathologic_n", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ldh_level_at_diagnosis", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_last_follow_up", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "residual_disease", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_recurrence", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "tumor_grade", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "figo_stage", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "cause_of_death", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "lymphatic_invasion_present", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "tissue_or_organ_of_origin", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "hpv_status", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_birth", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "progression_or_recurrence", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_new_event", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "prior_malignancy", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "vascular_invasion_present", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "new_event_type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ajcc_pathologic_stage", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "burkitt_lymphoma_clinical_variant", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "circumferential_resection_margin", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ldh_normal_range_upper", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ann_arbor_extranodal_involvement", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "lymph_nodes_positive", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "site_of_resection_or_biopsy", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ajcc_clinical_stage", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "hiv_positive", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_diagnosis", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "days_to_treatment_start", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "treatment_type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "therapeutic_agents", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_treatment", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "treatment_intent_type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "treatment_anatomic_site", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "treatment_outcome", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_treatment_end", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "treatment_or_therapy", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_treatment", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "created_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "updated_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "sample_type_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "biospecimen_anatomic_site", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "oct_embedded", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "tumor_code_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "submitter_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "intermediate_dimension", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "sample_volume", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "time_between_clamping_and_freezing", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "tumor_descriptor", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "sample_type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "time_between_excision_and_freezing", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "diagnosis_pathologically_confirmed", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "current_weight", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "composition", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "is_ffpe", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "shortest_dimension", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "method_of_sample_procurement", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "tumor_code", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "tissue_type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "days_to_sample_procurement", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "freezing_method", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "preservation_method", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "days_to_collection", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "initial_weight", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "longest_dimension", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "percent_tumor_nuclei", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "run_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_necrosis", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_granulocyte_infiltration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_inflam_infiltration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "apoptotic_concentration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_normal_cells", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ctc_concentration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "methanol_added", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "section_location", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ctc_low_concentration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "number_proliferating_cells", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ctc_small_concentration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_monocyte_infiltration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_lymphocyte_infiltration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_neutrophil_infiltration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "run_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_slide", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_stromal_cells", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "number_nucleated_cells", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_eosinophil_infiltration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "slide_identifier", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_tumor_cells", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "slides", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "slide", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_case", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "disease_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "primary_site", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "cases", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "case", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "year_of_diagnosis", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "method_of_diagnosis", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "laterality", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ann_arbor_pathologic_stage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "vital_status", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "morphology", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ann_arbor_clinical_stage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_last_known_disease_status", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "perineural_invasion_present", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_hiv_diagnosis", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ajcc_pathologic_m", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_last_follow_up", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "prior_treatment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ajcc_clinical_t", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "colon_polyps_history", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ajcc_pathologic_n", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ajcc_clinical_n", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ajcc_clinical_m", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ldh_level_at_diagnosis", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "residual_disease", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ajcc_pathologic_stage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "lymphatic_invasion_present", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "progression_or_recurrence", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_diagnosis", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "cause_of_death", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "burkitt_lymphoma_clinical_variant", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ann_arbor_extranodal_involvement", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ajcc_clinical_stage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "hiv_positive", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ann_arbor_b_symptoms", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "classification_of_tumor", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "last_known_disease_status", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "primary_diagnosis", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "tumor_stage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "age_at_diagnosis", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "hpv_positive_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_death", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "vascular_invasion_present", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "new_event_anatomic_site", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_recurrence", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "tumor_grade", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "figo_stage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "tissue_or_organ_of_origin", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_birth", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "hpv_status", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "prior_malignancy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "new_event_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_new_event", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "circumferential_resection_margin", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ldh_normal_range_upper", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "lymph_nodes_positive", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "site_of_resection_or_biopsy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ajcc_pathologic_t", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "diagnoses", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "diagnosis", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "analyte_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_aliquot", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "concentration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "aliquot_volume", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "aliquot_quantity", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "analyte_type_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "amount", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "source_center", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "aliquots", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "aliquot", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "sample_type_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "biospecimen_anatomic_site", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "oct_embedded", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "tumor_code_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "intermediate_dimension", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "sample_volume", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_ffpe", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "tumor_descriptor", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "sample_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "time_between_excision_and_freezing", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "shortest_dimension", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "diagnosis_pathologically_confirmed", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "current_weight", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "composition", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "time_between_clamping_and_freezing", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "method_of_sample_procurement", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "tumor_code", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "tissue_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_sample", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_sample_procurement", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "freezing_method", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "preservation_method", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_collection", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "initial_weight", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "longest_dimension", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_slides_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "sample_type_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "biospecimen_anatomic_site", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "oct_embedded", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "tumor_code_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "intermediate_dimension", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "sample_volume", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_ffpe", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "tumor_descriptor", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "sample_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "time_between_excision_and_freezing", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "shortest_dimension", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "diagnosis_pathologically_confirmed", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "current_weight", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "composition", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "time_between_clamping_and_freezing", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "method_of_sample_procurement", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "tumor_code", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "tissue_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_sample", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_sample_procurement", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "freezing_method", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "preservation_method", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_collection", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "initial_weight", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "longest_dimension", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_cases_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "sample_type_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "biospecimen_anatomic_site", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "oct_embedded", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "tumor_code_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "intermediate_dimension", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "sample_volume", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_ffpe", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "tumor_descriptor", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "sample_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "time_between_excision_and_freezing", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "shortest_dimension", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "diagnosis_pathologically_confirmed", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "current_weight", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "composition", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "time_between_clamping_and_freezing", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "method_of_sample_procurement", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "tumor_code", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "tissue_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_sample", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_sample_procurement", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "freezing_method", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "preservation_method", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_collection", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "initial_weight", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "longest_dimension", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_diagnoses_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "sample_type_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "biospecimen_anatomic_site", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "oct_embedded", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "tumor_code_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "intermediate_dimension", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "sample_volume", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_ffpe", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "tumor_descriptor", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "sample_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "time_between_excision_and_freezing", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "shortest_dimension", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "diagnosis_pathologically_confirmed", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "current_weight", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "composition", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "time_between_clamping_and_freezing", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "method_of_sample_procurement", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "tumor_code", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "tissue_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_sample", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_sample_procurement", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "freezing_method", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "preservation_method", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_collection", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "initial_weight", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "longest_dimension", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_aliquots_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", - "name": "committable", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_dry_run", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "committed_by", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "entities", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "program", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "closed", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "related_cases", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_transaction_logs_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", - "name": "committable", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_dry_run", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "committed_by", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "entities", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "program", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "closed", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "related_cases", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_transaction_logs", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TransactionLog", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": "10", - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "kind": "OBJECT", - "name": "sample", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "created_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "updated_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "percent_tumor_nuclei", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "submitter_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "run_name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "percent_necrosis", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "percent_granulocyte_infiltration", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "percent_inflam_infiltration", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "apoptotic_concentration", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "percent_normal_cells", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ctc_concentration", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "methanol_added", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "section_location", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ctc_low_concentration", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "number_proliferating_cells", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ctc_small_concentration", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "percent_monocyte_infiltration", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "percent_lymphocyte_infiltration", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "percent_neutrophil_infiltration", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "run_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "percent_stromal_cells", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "number_nucleated_cells", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "percent_eosinophil_infiltration", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "slide_identifier", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "percent_tumor_cells", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "biomarker_signal", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "run_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "cell_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "relative_nuclear_size", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "er_localization", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "relative_er_intensity", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ck_signal", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "relative_nuclear_intensity", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "cell_count", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_slide_count", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "relative_cytokeratin_intensity", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "frame_identifier", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "cell_identifier", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "slide_counts", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "slide_count", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "run_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_size", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "protocol_used", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "cell_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "error_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "object_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "panel_used", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "cell_count", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_slide_image", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state_comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_format", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "frame_identifier", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "cell_identifier", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "md5sum", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_category", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "experimental_strategy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "slide_images", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "slide_image", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "sample_type_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "biospecimen_anatomic_site", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "oct_embedded", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "tumor_code_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "intermediate_dimension", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "sample_volume", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_ffpe", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "tumor_descriptor", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "sample_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "time_between_excision_and_freezing", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "shortest_dimension", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "diagnosis_pathologically_confirmed", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "current_weight", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "composition", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "time_between_clamping_and_freezing", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "method_of_sample_procurement", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "tumor_code", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "tissue_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_sample", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_sample_procurement", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "freezing_method", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "preservation_method", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_collection", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "initial_weight", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "longest_dimension", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "samples", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "sample", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "percent_tumor_nuclei", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "run_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_necrosis", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_granulocyte_infiltration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_inflam_infiltration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "apoptotic_concentration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_normal_cells", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ctc_concentration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "methanol_added", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "section_location", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ctc_low_concentration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "number_proliferating_cells", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ctc_small_concentration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_monocyte_infiltration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_lymphocyte_infiltration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_neutrophil_infiltration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "run_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_slide", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_stromal_cells", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "number_nucleated_cells", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_eosinophil_infiltration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "slide_identifier", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_tumor_cells", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_slide_counts_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "percent_tumor_nuclei", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "run_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_necrosis", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_granulocyte_infiltration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_inflam_infiltration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "apoptotic_concentration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_normal_cells", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ctc_concentration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "methanol_added", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "section_location", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ctc_low_concentration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "number_proliferating_cells", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ctc_small_concentration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_monocyte_infiltration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_lymphocyte_infiltration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_neutrophil_infiltration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "run_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_slide", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_stromal_cells", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "number_nucleated_cells", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_eosinophil_infiltration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "slide_identifier", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_tumor_cells", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_slide_images_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "percent_tumor_nuclei", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "run_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_necrosis", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_granulocyte_infiltration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_inflam_infiltration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "apoptotic_concentration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_normal_cells", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ctc_concentration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "methanol_added", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "section_location", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ctc_low_concentration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "number_proliferating_cells", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ctc_small_concentration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_monocyte_infiltration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_lymphocyte_infiltration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_neutrophil_infiltration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "run_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_slide", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_stromal_cells", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "number_nucleated_cells", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_eosinophil_infiltration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "slide_identifier", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_tumor_cells", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_samples_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", - "name": "committable", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_dry_run", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "committed_by", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "entities", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "program", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "closed", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "related_cases", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_transaction_logs_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", - "name": "committable", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_dry_run", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "committed_by", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "entities", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "program", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "closed", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "related_cases", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_transaction_logs", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TransactionLog", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": "10", - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "kind": "OBJECT", - "name": "slide", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "created_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "updated_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "cell_type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "relative_nuclear_intensity", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "relative_nuclear_size", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "frame_identifier", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "cell_identifier", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "cell_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "run_name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "submitter_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ck_signal", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "relative_cytokeratin_intensity", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "biomarker_signal", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "er_localization", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "relative_er_intensity", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "percent_tumor_nuclei", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "run_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_necrosis", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_granulocyte_infiltration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_inflam_infiltration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "apoptotic_concentration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_normal_cells", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ctc_concentration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "methanol_added", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "section_location", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ctc_low_concentration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "number_proliferating_cells", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ctc_small_concentration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_monocyte_infiltration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_lymphocyte_infiltration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_neutrophil_infiltration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "run_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_slide", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_stromal_cells", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "number_nucleated_cells", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_eosinophil_infiltration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "slide_identifier", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_tumor_cells", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "slides", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "slide", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "biomarker_signal", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "run_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "cell_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "relative_nuclear_size", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "er_localization", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "relative_er_intensity", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ck_signal", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "relative_nuclear_intensity", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "cell_count", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_slide_count", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "relative_cytokeratin_intensity", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "frame_identifier", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "cell_identifier", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_slides_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", - "name": "committable", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_dry_run", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "committed_by", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "entities", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "program", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "closed", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "related_cases", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_transaction_logs_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", - "name": "committable", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_dry_run", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "committed_by", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "entities", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "program", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "closed", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "related_cases", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_transaction_logs", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TransactionLog", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": "10", - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "kind": "OBJECT", - "name": "slide_count", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "percent_tumor_nuclei", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "run_name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_necrosis", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_granulocyte_infiltration", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_inflam_infiltration", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "apoptotic_concentration", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_normal_cells", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ctc_concentration", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "methanol_added", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "section_location", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ctc_low_concentration", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "number_proliferating_cells", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ctc_small_concentration", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_monocyte_infiltration", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_lymphocyte_infiltration", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_neutrophil_infiltration", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "run_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_stromal_cells", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "number_nucleated_cells", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_eosinophil_infiltration", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "slide_identifier", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_tumor_cells", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_slide", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "cell_type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "relative_nuclear_intensity", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "relative_nuclear_size", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "frame_identifier", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "cell_identifier", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "cell_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "run_name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ck_signal", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "relative_cytokeratin_intensity", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "biomarker_signal", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "er_localization", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "relative_er_intensity", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_slide_count", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "created_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "updated_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "file_name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "file_size", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "submitter_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "run_name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "protocol_used", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "cell_type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "error_type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "object_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "panel_used", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "file_state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "experimental_strategy", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "data_type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "cell_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "state_comment", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "frame_identifier", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "cell_identifier", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "md5sum", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "data_format", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "data_category", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "percent_tumor_nuclei", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "run_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_necrosis", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_granulocyte_infiltration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_inflam_infiltration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "apoptotic_concentration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_normal_cells", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ctc_concentration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "methanol_added", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "section_location", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ctc_low_concentration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "number_proliferating_cells", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ctc_small_concentration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_monocyte_infiltration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_lymphocyte_infiltration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_neutrophil_infiltration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "run_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_slide", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_stromal_cells", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "number_nucleated_cells", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_eosinophil_infiltration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "slide_identifier", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_tumor_cells", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "slides", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "slide", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "creator", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_core_metadata_collection", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "relation", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "contributor", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "subject", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "title", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "format", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "source", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "description", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "coverage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "date", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "language", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "rights", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "publisher", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "core_metadata_collections", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "core_metadata_collection", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "run_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_size", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "protocol_used", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "cell_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "error_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "object_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "panel_used", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "cell_count", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_slide_image", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state_comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_format", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "frame_identifier", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "cell_identifier", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "md5sum", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_category", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "experimental_strategy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_slides_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "run_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_size", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "protocol_used", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "cell_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "error_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "object_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "panel_used", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "cell_count", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_slide_image", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state_comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_format", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "frame_identifier", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "cell_identifier", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "md5sum", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_category", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "experimental_strategy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_core_metadata_collections_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", - "name": "committable", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_dry_run", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "committed_by", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "entities", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "program", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "closed", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "related_cases", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_transaction_logs_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", - "name": "committable", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_dry_run", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "committed_by", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "entities", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "program", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "closed", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "related_cases", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_transaction_logs", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TransactionLog", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": "10", - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "kind": "OBJECT", - "name": "slide_image", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "created_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "updated_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "publisher", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "language", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "rights", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "description", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "data_type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "creator", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "format", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "submitter_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "date", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "relation", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "source", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "coverage", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "contributor", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "title", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "subject", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_format", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_size", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "error_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "object_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_submitted_aligned_reads", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state_comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "md5sum", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_category", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "experimental_strategy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "submitted_aligned_reads_files", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "submitted_aligned_reads", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_format", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_size", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "error_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "object_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_aligned_reads_index", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state_comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "md5sum", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_category", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "aligned_reads_indexes", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "aligned_reads_index", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "run_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_size", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "protocol_used", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "cell_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "error_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "object_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "panel_used", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "cell_count", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_slide_image", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state_comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_format", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "frame_identifier", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "cell_identifier", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "md5sum", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_category", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "experimental_strategy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "slide_images", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "slide_image", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "code", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "releasable", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "availability_mechanism", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "dbgap_accession_number", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "investigator_affiliation", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "support_source", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "investigator_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "date_collected", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "intended_release_date", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "support_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "released", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "availability_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_project", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "projects", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "project", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_format", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_size", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "error_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "object_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_submitted_unaligned_reads", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state_comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "md5sum", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_category", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "experimental_strategy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "submitted_unaligned_reads_files", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "submitted_unaligned_reads", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "creator", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_core_metadata_collection", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "relation", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "contributor", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "subject", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "title", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "format", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "source", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "description", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "coverage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "date", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "language", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "rights", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "publisher", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_submitted_aligned_reads_files_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "creator", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_core_metadata_collection", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "relation", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "contributor", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "subject", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "title", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "format", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "source", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "description", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "coverage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "date", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "language", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "rights", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "publisher", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_aligned_reads_indexes_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "creator", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_core_metadata_collection", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "relation", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "contributor", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "subject", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "title", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "format", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "source", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "description", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "coverage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "date", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "language", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "rights", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "publisher", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_slide_images_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "creator", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_core_metadata_collection", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "relation", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "contributor", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "subject", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "title", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "format", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "source", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "description", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "coverage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "date", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "language", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "rights", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "publisher", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_projects_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "creator", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_core_metadata_collection", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "relation", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "contributor", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "subject", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "title", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "format", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "source", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "description", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "coverage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "date", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "language", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "rights", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "publisher", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_submitted_unaligned_reads_files_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", - "name": "committable", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_dry_run", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "committed_by", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "entities", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "program", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "closed", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "related_cases", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_transaction_logs_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", - "name": "committable", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_dry_run", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "committed_by", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "entities", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "program", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "closed", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "related_cases", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_transaction_logs", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TransactionLog", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": "10", - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "kind": "OBJECT", - "name": "core_metadata_collection", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "created_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "updated_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "md5sum", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "data_type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "file_name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "error_type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "data_format", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "object_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "submitter_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "data_category", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "file_size", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "state_comment", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "file_state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "experimental_strategy", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "library_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_paired_end", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "adapter_sequence", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_strand", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_preparation_kit_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "base_caller_version", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "target_capture_kit_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_preparation_kit_vendor", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "base_caller_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "size_selection_range", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_preparation_kit_version", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "sequencing_date", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "to_trim_adapter_sequence", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "RIN", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "platform", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "flow_cell_barcode", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "barcoding_applied", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_selection", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_preparation_kit_catalog_number", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "target_capture_kit_target_region", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "target_capture_kit_version", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_read_group", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "instrument_model", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "read_group_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_strategy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "spike_ins_concentration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "adapter_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "includes_spike_ins", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "read_length", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "experiment_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "spike_ins_fasta", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "target_capture_kit_vendor", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "target_capture_kit_catalog_number", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "sequencing_center", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "read_groups", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "read_group", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "percent_aligned", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "encoding", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "sequence_duplication_levels", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "basic_statistics", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "per_base_sequence_content", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "kmer_content", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_gc_content", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "per_tile_sequence_quality", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "workflow_link", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "per_sequence_gc_content", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "per_base_n_content", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "adapter_content", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "workflow_end_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "per_base_sequence_quality", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "fastq_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_read_group_qc", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "total_sequences", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "total_aligned_reads", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "sequence_length_distribution", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "per_sequence_quality_score", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "workflow_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "overrepresented_sequences", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "workflow_start_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "workflow_version", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "read_group_qcs", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "read_group_qc", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_format", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_size", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "error_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "object_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_aligned_reads_index", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state_comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "md5sum", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_category", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "aligned_reads_indexes", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "aligned_reads_index", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "creator", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_core_metadata_collection", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "relation", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "contributor", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "subject", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "title", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "format", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "source", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "description", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "coverage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "date", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "language", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "rights", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "publisher", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "core_metadata_collections", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "core_metadata_collection", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_format", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_size", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "error_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "object_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_submitted_aligned_reads", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state_comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "md5sum", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_category", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "experimental_strategy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_read_groups_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_format", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_size", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "error_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "object_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_submitted_aligned_reads", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state_comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "md5sum", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_category", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "experimental_strategy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_read_group_qcs_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_format", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_size", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "error_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "object_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_submitted_aligned_reads", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state_comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "md5sum", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_category", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "experimental_strategy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_aligned_reads_indexes_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_format", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_size", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "error_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "object_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_submitted_aligned_reads", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state_comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "md5sum", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_category", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "experimental_strategy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_core_metadata_collections_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", - "name": "committable", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_dry_run", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "committed_by", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "entities", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "program", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "closed", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "related_cases", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_transaction_logs_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", - "name": "committable", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_dry_run", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "committed_by", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "entities", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "program", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "closed", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "related_cases", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_transaction_logs", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TransactionLog", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": "10", - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "kind": "OBJECT", - "name": "submitted_aligned_reads", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "created_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "updated_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "library_name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "is_paired_end", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "size_selection_range", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "adapter_sequence", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "library_strand", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "submitter_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "library_preparation_kit_name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "base_caller_version", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "target_capture_kit_name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "includes_spike_ins", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "library_preparation_kit_version", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "barcoding_applied", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "target_capture_kit_vendor", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "sequencing_date", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "spike_ins_fasta", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "to_trim_adapter_sequence", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "RIN", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "platform", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "spike_ins_concentration", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "library_selection", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "library_preparation_kit_catalog_number", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "target_capture_kit_target_region", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "target_capture_kit_version", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "read_group_name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "library_preparation_kit_vendor", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "library_strategy", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "target_capture_kit_catalog_number", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "instrument_model", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "base_caller_name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "read_length", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "experiment_name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "flow_cell_barcode", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "sequencing_center", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "adapter_name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_format", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_size", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "error_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "object_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_submitted_copy_number", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state_comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "md5sum", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_category", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "experimental_strategy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "submitted_copy_number_files", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "submitted_copy_number", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_format", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_size", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "error_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "object_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_submitted_aligned_reads", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state_comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "md5sum", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_category", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "experimental_strategy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "submitted_aligned_reads_files", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "submitted_aligned_reads", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_format", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_size", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "error_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "object_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "total_variants", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_submitted_somatic_mutation", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state_comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "md5sum", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_category", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "experimental_strategy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "submitted_somatic_mutations", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "submitted_somatic_mutation", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "percent_aligned", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "encoding", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "sequence_duplication_levels", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "basic_statistics", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "per_base_sequence_content", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "kmer_content", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_gc_content", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "per_tile_sequence_quality", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "workflow_link", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "per_sequence_gc_content", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "per_base_n_content", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "adapter_content", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "workflow_end_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "per_base_sequence_quality", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "fastq_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_read_group_qc", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "total_sequences", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "total_aligned_reads", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "sequence_length_distribution", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "per_sequence_quality_score", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "workflow_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "overrepresented_sequences", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "workflow_start_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "workflow_version", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "read_group_qcs", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "read_group_qc", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "analyte_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_aliquot", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "concentration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "aliquot_volume", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "aliquot_quantity", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "analyte_type_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "amount", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "source_center", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "aliquots", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "aliquot", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_format", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_size", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "error_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "object_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_submitted_unaligned_reads", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state_comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "md5sum", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_category", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "experimental_strategy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "submitted_unaligned_reads_files", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "submitted_unaligned_reads", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "library_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_paired_end", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "adapter_sequence", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_strand", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_preparation_kit_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "base_caller_version", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "target_capture_kit_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_preparation_kit_vendor", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "base_caller_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "size_selection_range", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_preparation_kit_version", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "sequencing_date", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "to_trim_adapter_sequence", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "RIN", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "platform", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "flow_cell_barcode", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "barcoding_applied", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_selection", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_preparation_kit_catalog_number", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "target_capture_kit_target_region", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "target_capture_kit_version", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_read_group", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "instrument_model", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "read_group_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_strategy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "spike_ins_concentration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "adapter_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "includes_spike_ins", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "read_length", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "experiment_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "spike_ins_fasta", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "target_capture_kit_vendor", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "target_capture_kit_catalog_number", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "sequencing_center", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_submitted_copy_number_files_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "library_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_paired_end", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "adapter_sequence", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_strand", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_preparation_kit_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "base_caller_version", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "target_capture_kit_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_preparation_kit_vendor", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "base_caller_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "size_selection_range", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_preparation_kit_version", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "sequencing_date", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "to_trim_adapter_sequence", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "RIN", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "platform", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "flow_cell_barcode", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "barcoding_applied", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_selection", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_preparation_kit_catalog_number", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "target_capture_kit_target_region", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "target_capture_kit_version", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_read_group", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "instrument_model", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "read_group_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_strategy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "spike_ins_concentration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "adapter_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "includes_spike_ins", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "read_length", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "experiment_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "spike_ins_fasta", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "target_capture_kit_vendor", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "target_capture_kit_catalog_number", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "sequencing_center", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_submitted_aligned_reads_files_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "library_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_paired_end", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "adapter_sequence", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_strand", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_preparation_kit_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "base_caller_version", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "target_capture_kit_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_preparation_kit_vendor", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "base_caller_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "size_selection_range", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_preparation_kit_version", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "sequencing_date", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "to_trim_adapter_sequence", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "RIN", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "platform", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "flow_cell_barcode", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "barcoding_applied", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_selection", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_preparation_kit_catalog_number", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "target_capture_kit_target_region", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "target_capture_kit_version", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_read_group", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "instrument_model", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "read_group_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_strategy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "spike_ins_concentration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "adapter_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "includes_spike_ins", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "read_length", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "experiment_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "spike_ins_fasta", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "target_capture_kit_vendor", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "target_capture_kit_catalog_number", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "sequencing_center", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_submitted_somatic_mutations_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "library_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_paired_end", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "adapter_sequence", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_strand", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_preparation_kit_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "base_caller_version", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "target_capture_kit_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_preparation_kit_vendor", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "base_caller_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "size_selection_range", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_preparation_kit_version", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "sequencing_date", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "to_trim_adapter_sequence", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "RIN", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "platform", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "flow_cell_barcode", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "barcoding_applied", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_selection", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_preparation_kit_catalog_number", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "target_capture_kit_target_region", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "target_capture_kit_version", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_read_group", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "instrument_model", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "read_group_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_strategy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "spike_ins_concentration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "adapter_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "includes_spike_ins", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "read_length", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "experiment_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "spike_ins_fasta", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "target_capture_kit_vendor", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "target_capture_kit_catalog_number", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "sequencing_center", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_read_group_qcs_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "library_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_paired_end", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "adapter_sequence", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_strand", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_preparation_kit_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "base_caller_version", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "target_capture_kit_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_preparation_kit_vendor", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "base_caller_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "size_selection_range", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_preparation_kit_version", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "sequencing_date", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "to_trim_adapter_sequence", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "RIN", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "platform", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "flow_cell_barcode", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "barcoding_applied", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_selection", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_preparation_kit_catalog_number", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "target_capture_kit_target_region", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "target_capture_kit_version", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_read_group", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "instrument_model", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "read_group_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_strategy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "spike_ins_concentration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "adapter_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "includes_spike_ins", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "read_length", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "experiment_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "spike_ins_fasta", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "target_capture_kit_vendor", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "target_capture_kit_catalog_number", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "sequencing_center", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_aliquots_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "library_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_paired_end", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "adapter_sequence", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_strand", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_preparation_kit_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "base_caller_version", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "target_capture_kit_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_preparation_kit_vendor", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "base_caller_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "size_selection_range", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_preparation_kit_version", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "sequencing_date", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "to_trim_adapter_sequence", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "RIN", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "platform", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "flow_cell_barcode", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "barcoding_applied", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_selection", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_preparation_kit_catalog_number", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "target_capture_kit_target_region", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "target_capture_kit_version", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_read_group", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "instrument_model", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "read_group_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_strategy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "spike_ins_concentration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "adapter_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "includes_spike_ins", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "read_length", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "experiment_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "spike_ins_fasta", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "target_capture_kit_vendor", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "target_capture_kit_catalog_number", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "sequencing_center", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_submitted_unaligned_reads_files_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", - "name": "committable", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_dry_run", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "committed_by", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "entities", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "program", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "closed", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "related_cases", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_transaction_logs_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", - "name": "committable", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_dry_run", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "committed_by", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "entities", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "program", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "closed", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "related_cases", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_transaction_logs", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TransactionLog", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": "10", - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "kind": "OBJECT", - "name": "read_group", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "created_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "updated_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "md5sum", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "data_type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "file_name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "error_type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "data_format", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "object_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "submitter_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "data_category", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "file_size", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "state_comment", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "file_state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "experimental_strategy", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "library_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_paired_end", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "adapter_sequence", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_strand", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_preparation_kit_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "base_caller_version", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "target_capture_kit_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_preparation_kit_vendor", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "base_caller_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "size_selection_range", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_preparation_kit_version", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "sequencing_date", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "to_trim_adapter_sequence", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "RIN", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "platform", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "flow_cell_barcode", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "barcoding_applied", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_selection", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_preparation_kit_catalog_number", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "target_capture_kit_target_region", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "target_capture_kit_version", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_read_group", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "instrument_model", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "read_group_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_strategy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "spike_ins_concentration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "adapter_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "includes_spike_ins", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "read_length", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "experiment_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "spike_ins_fasta", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "target_capture_kit_vendor", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "target_capture_kit_catalog_number", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "sequencing_center", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "read_groups", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "read_group", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "analyte_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_aliquot", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "concentration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "aliquot_volume", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "aliquot_quantity", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "analyte_type_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "amount", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "source_center", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "aliquots", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "aliquot", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_format", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_size", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "error_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "object_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_submitted_copy_number", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state_comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "md5sum", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_category", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "experimental_strategy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_read_groups_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_format", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_size", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "error_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "object_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_submitted_copy_number", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state_comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "md5sum", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_category", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "experimental_strategy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_aliquots_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", - "name": "committable", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_dry_run", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "committed_by", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "entities", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "program", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "closed", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "related_cases", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_transaction_logs_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", - "name": "committable", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_dry_run", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "committed_by", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "entities", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "program", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "closed", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "related_cases", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_transaction_logs", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TransactionLog", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": "10", - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "kind": "OBJECT", - "name": "submitted_copy_number", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "library_name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_paired_end", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "size_selection_range", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "adapter_sequence", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_strand", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_preparation_kit_name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "base_caller_version", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "target_capture_kit_name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "includes_spike_ins", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_preparation_kit_version", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "barcoding_applied", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "target_capture_kit_vendor", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "sequencing_date", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "spike_ins_fasta", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "to_trim_adapter_sequence", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "RIN", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "platform", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "spike_ins_concentration", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_selection", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_preparation_kit_catalog_number", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "target_capture_kit_target_region", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "target_capture_kit_version", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "read_group_name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_preparation_kit_vendor", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_strategy", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "target_capture_kit_catalog_number", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "instrument_model", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "base_caller_name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "read_length", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "experiment_name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "flow_cell_barcode", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "sequencing_center", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "adapter_name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_read_group", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "created_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "updated_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "aliquot_quantity", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "aliquot_volume", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "source_center", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "analyte_type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "submitter_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "amount", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "concentration", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "analyte_type_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_format", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_size", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "error_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "object_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_submitted_copy_number", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state_comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "md5sum", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_category", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "experimental_strategy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "submitted_copy_number_files", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "submitted_copy_number", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "library_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_paired_end", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "adapter_sequence", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_strand", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_preparation_kit_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "base_caller_version", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "target_capture_kit_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_preparation_kit_vendor", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "base_caller_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "size_selection_range", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_preparation_kit_version", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "sequencing_date", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "to_trim_adapter_sequence", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "RIN", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "platform", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "flow_cell_barcode", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "barcoding_applied", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_selection", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_preparation_kit_catalog_number", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "target_capture_kit_target_region", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "target_capture_kit_version", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_read_group", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "instrument_model", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "read_group_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_strategy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "spike_ins_concentration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "adapter_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "includes_spike_ins", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "read_length", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "experiment_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "spike_ins_fasta", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "target_capture_kit_vendor", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "target_capture_kit_catalog_number", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "sequencing_center", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "read_groups", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "read_group", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "error_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_format", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_size", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "assay_instrument_model", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "object_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "assay_method", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_submitted_methylation", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state_comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "md5sum", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_category", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "assay_instrument", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "submitted_methylation_files", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "submitted_methylation", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "sample_type_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "biospecimen_anatomic_site", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "oct_embedded", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "tumor_code_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "intermediate_dimension", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "sample_volume", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_ffpe", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "tumor_descriptor", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "sample_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "time_between_excision_and_freezing", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "shortest_dimension", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "diagnosis_pathologically_confirmed", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "current_weight", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "composition", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "time_between_clamping_and_freezing", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "method_of_sample_procurement", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "tumor_code", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "tissue_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_sample", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_sample_procurement", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "freezing_method", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "preservation_method", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_collection", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "initial_weight", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "longest_dimension", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "samples", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "sample", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "analyte_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_aliquot", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "concentration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "aliquot_volume", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "aliquot_quantity", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "analyte_type_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "amount", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "source_center", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_submitted_copy_number_files_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "analyte_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_aliquot", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "concentration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "aliquot_volume", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "aliquot_quantity", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "analyte_type_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "amount", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "source_center", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_read_groups_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "analyte_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_aliquot", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "concentration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "aliquot_volume", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "aliquot_quantity", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "analyte_type_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "amount", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "source_center", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_submitted_methylation_files_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "analyte_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_aliquot", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "concentration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "aliquot_volume", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "aliquot_quantity", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "analyte_type_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "amount", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "source_center", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_samples_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", - "name": "committable", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_dry_run", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "committed_by", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "entities", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "program", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "closed", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "related_cases", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_transaction_logs_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", - "name": "committable", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_dry_run", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "committed_by", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "entities", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "program", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "closed", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "related_cases", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_transaction_logs", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TransactionLog", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": "10", - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "kind": "OBJECT", - "name": "aliquot", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "md5sum", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "error_type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_format", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "object_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_category", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_size", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "state_comment", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "experimental_strategy", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_submitted_copy_number", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "created_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "updated_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "assay_method", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "data_type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "assay_instrument_model", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "file_name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "error_type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "data_format", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "object_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "submitter_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "data_category", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "file_size", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "md5sum", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "state_comment", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "file_state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "assay_instrument", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "analyte_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_aliquot", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "concentration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "aliquot_volume", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "aliquot_quantity", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "analyte_type_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "amount", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "source_center", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "aliquots", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "aliquot", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "error_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_format", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_size", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "assay_instrument_model", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "object_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "assay_method", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_submitted_methylation", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state_comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "md5sum", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_category", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "assay_instrument", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_aliquots_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", - "name": "committable", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_dry_run", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "committed_by", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "entities", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "program", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "closed", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "related_cases", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_transaction_logs_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", - "name": "committable", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_dry_run", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "committed_by", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "entities", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "program", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "closed", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "related_cases", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_transaction_logs", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TransactionLog", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": "10", - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "kind": "OBJECT", - "name": "submitted_methylation", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "aliquot_quantity", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "aliquot_volume", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "source_center", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "analyte_type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "amount", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "concentration", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "analyte_type_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_aliquot", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "assay_method", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "assay_instrument_model", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "error_type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_format", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "object_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_category", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_size", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "md5sum", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "state_comment", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "assay_instrument", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_submitted_methylation", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "sample_type_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "biospecimen_anatomic_site", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "oct_embedded", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "tumor_code_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "intermediate_dimension", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "sample_volume", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "time_between_clamping_and_freezing", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "tumor_descriptor", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "sample_type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "time_between_excision_and_freezing", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "diagnosis_pathologically_confirmed", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "current_weight", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "composition", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_ffpe", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "shortest_dimension", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "method_of_sample_procurement", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "tumor_code", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "tissue_type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_sample_procurement", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "freezing_method", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "preservation_method", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_collection", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "initial_weight", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "longest_dimension", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_sample", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "md5sum", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "error_type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_format", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "object_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_category", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_size", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "state_comment", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "experimental_strategy", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_submitted_aligned_reads", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "created_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "updated_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "md5sum", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "data_type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "file_name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "error_type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "data_format", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "object_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "submitter_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "data_category", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "file_size", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "state_comment", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "total_variants", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "file_state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "experimental_strategy", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "library_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_paired_end", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "adapter_sequence", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_strand", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_preparation_kit_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "base_caller_version", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "target_capture_kit_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_preparation_kit_vendor", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "base_caller_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "size_selection_range", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_preparation_kit_version", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "sequencing_date", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "to_trim_adapter_sequence", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "RIN", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "platform", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "flow_cell_barcode", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "barcoding_applied", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_selection", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_preparation_kit_catalog_number", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "target_capture_kit_target_region", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "target_capture_kit_version", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_read_group", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "instrument_model", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "read_group_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_strategy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "spike_ins_concentration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "adapter_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "includes_spike_ins", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "read_length", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "experiment_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "spike_ins_fasta", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "target_capture_kit_vendor", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "target_capture_kit_catalog_number", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "sequencing_center", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "read_groups", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "read_group", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_format", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_size", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "error_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "object_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "total_variants", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_submitted_somatic_mutation", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state_comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "md5sum", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_category", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "experimental_strategy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_read_groups_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", - "name": "committable", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_dry_run", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "committed_by", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "entities", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "program", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "closed", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "related_cases", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_transaction_logs_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", - "name": "committable", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_dry_run", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "committed_by", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "entities", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "program", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "closed", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "related_cases", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_transaction_logs", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TransactionLog", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": "10", - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "kind": "OBJECT", - "name": "submitted_somatic_mutation", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "md5sum", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "error_type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_format", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "object_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_category", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_size", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "state_comment", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "total_variants", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "experimental_strategy", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_submitted_somatic_mutation", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "created_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "updated_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "percent_aligned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "encoding", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "sequence_duplication_levels", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "submitter_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "basic_statistics", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "per_base_sequence_content", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "kmer_content", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "percent_gc_content", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "workflow_type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "per_sequence_gc_content", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "per_base_n_content", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "workflow_end_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "adapter_content", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "per_base_sequence_quality", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "fastq_name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "workflow_link", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "total_sequences", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "total_aligned_reads", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "sequence_length_distribution", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "per_sequence_quality_score", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "per_tile_sequence_quality", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "overrepresented_sequences", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "workflow_start_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "workflow_version", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "library_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_paired_end", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "adapter_sequence", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_strand", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_preparation_kit_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "base_caller_version", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "target_capture_kit_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_preparation_kit_vendor", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "base_caller_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "size_selection_range", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_preparation_kit_version", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "sequencing_date", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "to_trim_adapter_sequence", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "RIN", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "platform", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "flow_cell_barcode", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "barcoding_applied", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_selection", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_preparation_kit_catalog_number", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "target_capture_kit_target_region", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "target_capture_kit_version", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_read_group", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "instrument_model", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "read_group_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_strategy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "spike_ins_concentration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "adapter_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "includes_spike_ins", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "read_length", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "experiment_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "spike_ins_fasta", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "target_capture_kit_vendor", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "target_capture_kit_catalog_number", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "sequencing_center", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "read_groups", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "read_group", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_format", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_size", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "error_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "object_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_submitted_aligned_reads", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state_comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "md5sum", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_category", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "experimental_strategy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "submitted_aligned_reads_files", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "submitted_aligned_reads", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_format", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_size", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "error_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "object_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_submitted_unaligned_reads", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state_comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "md5sum", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_category", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "experimental_strategy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "submitted_unaligned_reads_files", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "submitted_unaligned_reads", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "percent_aligned", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "encoding", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "sequence_duplication_levels", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "basic_statistics", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "per_base_sequence_content", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "kmer_content", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_gc_content", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "per_tile_sequence_quality", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "workflow_link", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "per_sequence_gc_content", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "per_base_n_content", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "adapter_content", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "workflow_end_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "per_base_sequence_quality", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "fastq_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_read_group_qc", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "total_sequences", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "total_aligned_reads", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "sequence_length_distribution", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "per_sequence_quality_score", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "workflow_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "overrepresented_sequences", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "workflow_start_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "workflow_version", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_read_groups_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "percent_aligned", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "encoding", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "sequence_duplication_levels", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "basic_statistics", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "per_base_sequence_content", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "kmer_content", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_gc_content", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "per_tile_sequence_quality", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "workflow_link", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "per_sequence_gc_content", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "per_base_n_content", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "adapter_content", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "workflow_end_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "per_base_sequence_quality", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "fastq_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_read_group_qc", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "total_sequences", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "total_aligned_reads", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "sequence_length_distribution", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "per_sequence_quality_score", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "workflow_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "overrepresented_sequences", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "workflow_start_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "workflow_version", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_submitted_aligned_reads_files_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "percent_aligned", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "encoding", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "sequence_duplication_levels", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "basic_statistics", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "per_base_sequence_content", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "kmer_content", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_gc_content", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "per_tile_sequence_quality", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "workflow_link", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "per_sequence_gc_content", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "per_base_n_content", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "adapter_content", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "workflow_end_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "per_base_sequence_quality", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "fastq_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_read_group_qc", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "total_sequences", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "total_aligned_reads", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "sequence_length_distribution", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "per_sequence_quality_score", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "workflow_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "overrepresented_sequences", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "workflow_start_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "workflow_version", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_submitted_unaligned_reads_files_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", - "name": "committable", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_dry_run", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "committed_by", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "entities", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "program", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "closed", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "related_cases", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_transaction_logs_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", - "name": "committable", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_dry_run", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "committed_by", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "entities", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "program", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "closed", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "related_cases", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_transaction_logs", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TransactionLog", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": "10", - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "kind": "OBJECT", - "name": "read_group_qc", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "created_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "updated_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "md5sum", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "data_type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "file_name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "error_type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "data_format", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "object_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "submitter_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "data_category", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "file_size", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "state_comment", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "file_state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "experimental_strategy", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "library_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_paired_end", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "adapter_sequence", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_strand", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_preparation_kit_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "base_caller_version", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "target_capture_kit_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_preparation_kit_vendor", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "base_caller_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "size_selection_range", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_preparation_kit_version", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "sequencing_date", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "to_trim_adapter_sequence", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "RIN", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "platform", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "flow_cell_barcode", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "barcoding_applied", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_selection", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_preparation_kit_catalog_number", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "target_capture_kit_target_region", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "target_capture_kit_version", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_read_group", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "instrument_model", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "read_group_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "library_strategy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "spike_ins_concentration", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "adapter_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "includes_spike_ins", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "read_length", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "experiment_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "spike_ins_fasta", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "target_capture_kit_vendor", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "target_capture_kit_catalog_number", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "sequencing_center", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "read_groups", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "read_group", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "percent_aligned", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "encoding", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "sequence_duplication_levels", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "basic_statistics", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "per_base_sequence_content", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "kmer_content", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_gc_content", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "per_tile_sequence_quality", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "workflow_link", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "per_sequence_gc_content", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "per_base_n_content", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "adapter_content", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "workflow_end_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "per_base_sequence_quality", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "fastq_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_read_group_qc", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "total_sequences", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "total_aligned_reads", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "sequence_length_distribution", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "per_sequence_quality_score", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "workflow_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "overrepresented_sequences", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "workflow_start_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "workflow_version", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "read_group_qcs", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "read_group_qc", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "creator", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_core_metadata_collection", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "relation", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "contributor", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "subject", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "title", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "format", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "source", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "description", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "coverage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "date", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "language", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "rights", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "publisher", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "core_metadata_collections", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "core_metadata_collection", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_format", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_size", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "error_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "object_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_submitted_unaligned_reads", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state_comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "md5sum", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_category", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "experimental_strategy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_read_groups_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_format", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_size", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "error_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "object_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_submitted_unaligned_reads", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state_comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "md5sum", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_category", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "experimental_strategy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_read_group_qcs_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_format", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_size", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "error_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "object_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_submitted_unaligned_reads", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state_comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "md5sum", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_category", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "experimental_strategy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_core_metadata_collections_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", - "name": "committable", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_dry_run", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "committed_by", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "entities", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "program", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "closed", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "related_cases", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_transaction_logs_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", - "name": "committable", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_dry_run", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "committed_by", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "entities", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "program", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "closed", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "related_cases", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_transaction_logs", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TransactionLog", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": "10", - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "kind": "OBJECT", - "name": "submitted_unaligned_reads", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "percent_aligned", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "encoding", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "sequence_duplication_levels", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "basic_statistics", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "per_base_sequence_content", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "kmer_content", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_gc_content", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "workflow_type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "per_sequence_gc_content", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "per_base_n_content", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "workflow_end_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "adapter_content", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "per_base_sequence_quality", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "fastq_name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "workflow_link", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "total_sequences", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "total_aligned_reads", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "sequence_length_distribution", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "per_sequence_quality_score", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "per_tile_sequence_quality", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "overrepresented_sequences", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "workflow_start_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "workflow_version", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_read_group_qc", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "publisher", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "language", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "rights", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "description", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "creator", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "format", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "date", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "relation", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "source", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "coverage", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "contributor", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "title", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "subject", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_core_metadata_collection", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "md5sum", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "error_type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_format", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "object_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_category", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_size", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "state_comment", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "experimental_strategy", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_submitted_unaligned_reads", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "created_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "updated_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "md5sum", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "data_type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "file_name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "error_type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "data_format", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "object_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "submitter_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "data_category", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "file_size", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "state_comment", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "file_state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_format", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_size", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "error_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "object_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_submitted_aligned_reads", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state_comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "md5sum", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_category", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "experimental_strategy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "submitted_aligned_reads_files", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "submitted_aligned_reads", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "creator", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_core_metadata_collection", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "relation", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "contributor", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "subject", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "title", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "format", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "source", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "description", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "coverage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "date", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "language", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "rights", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "publisher", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "core_metadata_collections", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "core_metadata_collection", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_format", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_size", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "error_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "object_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_aligned_reads_index", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state_comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "md5sum", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_category", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_submitted_aligned_reads_files_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_format", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_size", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "error_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "object_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_aligned_reads_index", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state_comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "md5sum", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_category", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_core_metadata_collections_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", - "name": "committable", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_dry_run", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "committed_by", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "entities", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "program", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "closed", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "related_cases", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_transaction_logs_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", - "name": "committable", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_dry_run", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "committed_by", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "entities", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "program", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "closed", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "related_cases", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_transaction_logs", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TransactionLog", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": "10", - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "kind": "OBJECT", - "name": "aligned_reads_index", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "md5sum", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "error_type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_format", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "object_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_category", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_size", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "state_comment", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_aligned_reads_index", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_size", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "run_name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "protocol_used", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "cell_type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "error_type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "object_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "panel_used", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "experimental_strategy", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "cell_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "state_comment", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "frame_identifier", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "cell_identifier", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "md5sum", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_format", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_category", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_slide_image", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "created_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "updated_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "date_collected", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "code", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "support_source", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "intended_release_date", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "investigator_affiliation", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "availability_mechanism", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "support_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "releasable", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "released", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "availability_type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "investigator_name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "dbgap_accession_number", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "dbgap_accession_number", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_program", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "programs", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "program", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "creator", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_core_metadata_collection", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "relation", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "contributor", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "subject", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "title", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "format", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "source", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "description", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "coverage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "date", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "language", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "rights", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "publisher", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "core_metadata_collections", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "core_metadata_collection", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "type_of_sample", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "somatic_mutations_identified", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "marker_panel_description", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "experimental_intent", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "type_of_specimen", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "type_of_data", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "associated_experiment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "copy_numbers_identified", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_experiment", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "number_samples_per_experimental_group", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "number_experimental_group", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_description", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "indels_identified", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "experimental_description", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "experiments", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "experiment", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "doi", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_publication", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "pmid", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "publications", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "publication", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "keyword_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_keyword", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "keywords", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "keyword", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "acknowledgee", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_acknowledgement", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "acknowledgements", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "acknowledgement", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "code", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "releasable", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "availability_mechanism", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "dbgap_accession_number", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "investigator_affiliation", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "support_source", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "investigator_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "date_collected", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "intended_release_date", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "support_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "released", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "availability_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_project", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_programs_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "code", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "releasable", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "availability_mechanism", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "dbgap_accession_number", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "investigator_affiliation", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "support_source", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "investigator_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "date_collected", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "intended_release_date", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "support_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "released", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "availability_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_project", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_core_metadata_collections_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "code", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "releasable", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "availability_mechanism", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "dbgap_accession_number", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "investigator_affiliation", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "support_source", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "investigator_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "date_collected", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "intended_release_date", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "support_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "released", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "availability_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_project", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_experiments_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "code", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "releasable", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "availability_mechanism", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "dbgap_accession_number", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "investigator_affiliation", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "support_source", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "investigator_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "date_collected", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "intended_release_date", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "support_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "released", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "availability_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_project", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_publications_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "code", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "releasable", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "availability_mechanism", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "dbgap_accession_number", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "investigator_affiliation", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "support_source", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "investigator_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "date_collected", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "intended_release_date", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "support_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "released", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "availability_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_project", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_keywords_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "code", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "releasable", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "availability_mechanism", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "dbgap_accession_number", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "investigator_affiliation", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "support_source", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "investigator_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "date_collected", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "intended_release_date", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "support_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "released", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "availability_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_project", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_acknowledgements_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", - "name": "committable", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_dry_run", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "committed_by", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "entities", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "program", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "closed", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "related_cases", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_transaction_logs_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", - "name": "committable", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_dry_run", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "committed_by", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "entities", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "program", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "closed", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "related_cases", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_transaction_logs", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TransactionLog", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": "10", - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "kind": "OBJECT", - "name": "project", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "created_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "updated_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "dbgap_accession_number", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "code", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "releasable", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "availability_mechanism", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "dbgap_accession_number", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "investigator_affiliation", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "support_source", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "investigator_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "date_collected", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "intended_release_date", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "support_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "released", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "availability_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_project", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "projects", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "project", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "dbgap_accession_number", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_program", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_projects_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", - "name": "committable", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_dry_run", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "committed_by", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "entities", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "program", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "closed", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "related_cases", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_transaction_logs_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", - "name": "committable", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_dry_run", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "committed_by", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "entities", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "program", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "closed", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "related_cases", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_transaction_logs", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TransactionLog", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": "10", - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "kind": "OBJECT", - "name": "program", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "date_collected", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "code", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "support_source", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "intended_release_date", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "investigator_affiliation", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "availability_mechanism", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "support_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "releasable", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "released", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "availability_type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "investigator_name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "dbgap_accession_number", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_project", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "dbgap_accession_number", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_program", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "associated_experiment", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "copy_numbers_identified", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "number_samples_per_experimental_group", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "indels_identified", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "marker_panel_description", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "number_experimental_group", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "experimental_intent", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "type_of_sample", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_description", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "type_of_data", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "somatic_mutations_identified", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "type_of_specimen", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "experimental_description", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_experiment", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "created_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "updated_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "doi", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "submitter_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "pmid", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "code", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "releasable", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "availability_mechanism", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "dbgap_accession_number", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "investigator_affiliation", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "support_source", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "investigator_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "date_collected", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "intended_release_date", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "support_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "released", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "availability_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_project", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "projects", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "project", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "doi", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_publication", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "pmid", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_projects_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", - "name": "committable", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_dry_run", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "committed_by", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "entities", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "program", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "closed", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "related_cases", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_transaction_logs_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", - "name": "committable", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_dry_run", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "committed_by", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "entities", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "program", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "closed", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "related_cases", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_transaction_logs", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TransactionLog", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": "10", - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "kind": "OBJECT", - "name": "publication", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "doi", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "pmid", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_publication", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "created_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "updated_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "keyword_name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "submitter_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "code", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "releasable", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "availability_mechanism", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "dbgap_accession_number", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "investigator_affiliation", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "support_source", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "investigator_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "date_collected", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "intended_release_date", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "support_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "released", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "availability_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_project", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "projects", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "project", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "keyword_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_keyword", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_projects_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", - "name": "committable", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_dry_run", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "committed_by", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "entities", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "program", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "closed", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "related_cases", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_transaction_logs_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", - "name": "committable", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_dry_run", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "committed_by", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "entities", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "program", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "closed", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "related_cases", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_transaction_logs", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TransactionLog", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": "10", - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "kind": "OBJECT", - "name": "keyword", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "keyword_name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_keyword", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "created_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "updated_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "acknowledgee", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "submitter_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "code", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "releasable", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "availability_mechanism", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "dbgap_accession_number", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "investigator_affiliation", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "support_source", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "investigator_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "date_collected", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "intended_release_date", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "support_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "released", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "availability_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_project", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "projects", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "project", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "acknowledgee", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_acknowledgement", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_projects_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", - "name": "committable", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_dry_run", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "committed_by", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "entities", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "program", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "closed", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "related_cases", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_transaction_logs_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", - "name": "committable", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_dry_run", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "committed_by", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "entities", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "program", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "closed", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "related_cases", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_transaction_logs", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TransactionLog", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": "10", - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "kind": "OBJECT", - "name": "acknowledgement", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "acknowledgee", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_acknowledgement", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "created_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "updated_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "her2_erbb2_result_ihc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "submitter_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "fev1_fvc_pre_bronch_percent", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "fev1_ref_post_bronch_percent", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "fev1_fvc_post_bronch_percent", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "dlco_ref_predictive_percent", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "her2_erbb2_percent_positive_ihc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "biomarker_test_method", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ldh_level_at_diagnosis", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "progesterone_receptor_percent_positive_ihc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "cea_level_preoperative", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "biomarker_name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "progesterone_receptor_result_ihc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "biomarker_result", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "estrogen_receptor_percent_positive_ihc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ldh_normal_range_upper", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "estrogen_receptor_result_ihc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "fev1_ref_pre_bronch_percent", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "her2_erbb2_result_fish", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "microsatellite_instability_abnormal", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_case", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "disease_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "primary_site", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "cases", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "case", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "year_of_diagnosis", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "method_of_diagnosis", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "laterality", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ann_arbor_pathologic_stage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "vital_status", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "morphology", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ann_arbor_clinical_stage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_last_known_disease_status", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "perineural_invasion_present", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_hiv_diagnosis", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ajcc_pathologic_m", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_last_follow_up", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "prior_treatment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ajcc_clinical_t", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "colon_polyps_history", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ajcc_pathologic_n", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ajcc_clinical_n", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ajcc_clinical_m", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ldh_level_at_diagnosis", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "residual_disease", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ajcc_pathologic_stage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "lymphatic_invasion_present", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "progression_or_recurrence", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_diagnosis", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "cause_of_death", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "burkitt_lymphoma_clinical_variant", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ann_arbor_extranodal_involvement", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ajcc_clinical_stage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "hiv_positive", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ann_arbor_b_symptoms", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "classification_of_tumor", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "last_known_disease_status", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "primary_diagnosis", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "tumor_stage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "age_at_diagnosis", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "hpv_positive_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_death", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "vascular_invasion_present", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "new_event_anatomic_site", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_recurrence", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "tumor_grade", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "figo_stage", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "tissue_or_organ_of_origin", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_birth", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "hpv_status", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "prior_malignancy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "new_event_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_new_event", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "circumferential_resection_margin", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ldh_normal_range_upper", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "lymph_nodes_positive", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "site_of_resection_or_biopsy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ajcc_pathologic_t", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "diagnoses", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "diagnosis", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "her2_erbb2_result_ihc", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ldh_level_at_diagnosis", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "biomarker_result", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "fev1_fvc_pre_bronch_percent", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "fev1_ref_post_bronch_percent", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "dlco_ref_predictive_percent", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "her2_erbb2_percent_positive_ihc", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "biomarker_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "fev1_fvc_post_bronch_percent", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "cea_level_preoperative", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "biomarker_test_method", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "progesterone_receptor_result_ihc", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_clinical_test", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "estrogen_receptor_percent_positive_ihc", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ldh_normal_range_upper", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "estrogen_receptor_result_ihc", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "fev1_ref_pre_bronch_percent", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "her2_erbb2_result_fish", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "microsatellite_instability_abnormal", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "progesterone_receptor_percent_positive_ihc", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_cases_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "her2_erbb2_result_ihc", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ldh_level_at_diagnosis", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "biomarker_result", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "fev1_fvc_pre_bronch_percent", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "fev1_ref_post_bronch_percent", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "dlco_ref_predictive_percent", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "her2_erbb2_percent_positive_ihc", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "biomarker_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "fev1_fvc_post_bronch_percent", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "cea_level_preoperative", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "biomarker_test_method", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "progesterone_receptor_result_ihc", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_clinical_test", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "estrogen_receptor_percent_positive_ihc", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ldh_normal_range_upper", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "estrogen_receptor_result_ihc", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "fev1_ref_pre_bronch_percent", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "her2_erbb2_result_fish", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "microsatellite_instability_abnormal", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "progesterone_receptor_percent_positive_ihc", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_diagnoses_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", - "name": "committable", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_dry_run", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "committed_by", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "entities", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "program", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "closed", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "related_cases", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_transaction_logs_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", - "name": "committable", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_dry_run", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "committed_by", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "entities", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "program", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "closed", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "related_cases", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_transaction_logs", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TransactionLog", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": "10", - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "kind": "OBJECT", - "name": "clinical_test", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "her2_erbb2_result_ihc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "fev1_fvc_pre_bronch_percent", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "fev1_ref_post_bronch_percent", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "fev1_fvc_post_bronch_percent", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "dlco_ref_predictive_percent", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "her2_erbb2_percent_positive_ihc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "biomarker_test_method", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ldh_level_at_diagnosis", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "progesterone_receptor_percent_positive_ihc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "cea_level_preoperative", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "biomarker_name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "progesterone_receptor_result_ihc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "biomarker_result", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "estrogen_receptor_percent_positive_ihc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ldh_normal_range_upper", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "estrogen_receptor_result_ihc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "fev1_ref_pre_bronch_percent", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "her2_erbb2_result_fish", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "microsatellite_instability_abnormal", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_clinical_test", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "created_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "updated_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "gender", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "year_of_birth", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "submitter_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "race", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ethnicity", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "year_of_death", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_case", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "disease_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "primary_site", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "cases", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "case", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "race", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "year_of_birth", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "year_of_death", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_demographic", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "gender", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ethnicity", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_cases_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", - "name": "committable", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_dry_run", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "committed_by", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "entities", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "program", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "closed", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "related_cases", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_transaction_logs_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", - "name": "committable", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_dry_run", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "committed_by", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "entities", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "program", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "closed", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "related_cases", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_transaction_logs", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TransactionLog", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": "10", - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "kind": "OBJECT", - "name": "demographic", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "gender", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "year_of_birth", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "race", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ethnicity", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "year_of_death", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_demographic", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "created_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "updated_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "relationship_gender", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "relative_with_cancer_history", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "relationship_age_at_diagnosis", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "submitter_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "relationship_type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "relationship_primary_diagnosis", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_case", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "disease_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "primary_site", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "cases", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "case", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "relationship_gender", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_family_history", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "relationship_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "relative_with_cancer_history", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "relationship_primary_diagnosis", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "relationship_age_at_diagnosis", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_cases_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", - "name": "committable", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_dry_run", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "committed_by", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "entities", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "program", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "closed", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "related_cases", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_transaction_logs_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", - "name": "committable", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_dry_run", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "committed_by", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "entities", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "program", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "closed", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "related_cases", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_transaction_logs", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TransactionLog", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": "10", - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "kind": "OBJECT", - "name": "family_history", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "relationship_gender", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "relative_with_cancer_history", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "relationship_age_at_diagnosis", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "relationship_type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "relationship_primary_diagnosis", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_family_history", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "created_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "updated_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "cigarettes_per_day", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "weight", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "alcohol_history", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "alcohol_intensity", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "bmi", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "years_smoked", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "submitter_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "tobacco_smoking_status", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "tobacco_smoking_onset_year", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "tobacco_smoking_quit_year", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "pack_years_smoked", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_case", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "disease_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "primary_site", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "cases", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "case", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "cigarettes_per_day", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "years_smoked", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "height", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "tobacco_smoking_status", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "pack_years_smoked", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "weight", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "tobacco_smoking_onset_year", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "alcohol_history", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "bmi", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_exposure", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "alcohol_intensity", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "tobacco_smoking_quit_year", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_cases_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", - "name": "committable", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_dry_run", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "committed_by", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "entities", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "program", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "closed", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "related_cases", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_transaction_logs_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", - "name": "committable", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_dry_run", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "committed_by", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "entities", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "program", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "closed", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "related_cases", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_transaction_logs", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TransactionLog", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": "10", - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "kind": "OBJECT", - "name": "exposure", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "cigarettes_per_day", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "weight", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "alcohol_history", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "alcohol_intensity", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "bmi", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "years_smoked", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "height", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "tobacco_smoking_status", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "tobacco_smoking_onset_year", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "tobacco_smoking_quit_year", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "pack_years_smoked", - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_exposure", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "md5sum", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "error_type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_format", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "object_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_category", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_size", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "state_comment", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_experimental_metadata", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "created_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "updated_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "release_date", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "major_version", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "minor_version", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "released", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "schema_version", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_root", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "roots", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "root", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "major_version", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "released", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_data_release", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "release_date", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "minor_version", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_roots_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", - "name": "committable", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_dry_run", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "committed_by", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "entities", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "program", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "closed", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "related_cases", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_transaction_logs_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", - "name": "committable", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_dry_run", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "committed_by", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "entities", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "program", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "closed", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "related_cases", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_transaction_logs", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TransactionLog", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": "10", - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "kind": "OBJECT", - "name": "data_release", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "created_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "updated_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "schema_version", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "major_version", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "released", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_data_release", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "release_date", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "minor_version", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "data_releases", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "data_release", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "schema_version", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_root", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_data_releases_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", - "name": "committable", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_dry_run", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "committed_by", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "entities", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "program", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "closed", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "related_cases", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_transaction_logs_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", - "name": "committable", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "is_dry_run", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "committed_by", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "entities", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "program", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "closed", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "related_cases", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_transaction_logs", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TransactionLog", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": "10", - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "kind": "OBJECT", - "name": "root", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "release_date", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "major_version", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "minor_version", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "released", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_data_release", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "md5sum", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "data_type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "updated_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "created_datetime", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "file_name", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "error_type", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "data_format", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "object_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "submitter_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "data_category", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "state_comment", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "file_state", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "file_size", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "DataNode", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "of_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": "10", - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "node", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_format", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_size", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "error_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "object_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_experimental_metadata", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state_comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "md5sum", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_category", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "experimental_metadata", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "experimental_metadata", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_format", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_size", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "error_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "object_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_experimental_metadata", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state_comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "md5sum", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_category", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_experimental_metadata_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_format", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_size", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "error_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "object_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "total_variants", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_submitted_somatic_mutation", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state_comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "md5sum", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_category", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "experimental_strategy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "submitted_somatic_mutation", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "submitted_somatic_mutation", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_format", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_size", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "error_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "object_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "total_variants", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_submitted_somatic_mutation", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state_comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "md5sum", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_category", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "experimental_strategy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_submitted_somatic_mutation_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "percent_aligned", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "encoding", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "sequence_duplication_levels", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "basic_statistics", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "per_base_sequence_content", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "kmer_content", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_gc_content", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "per_tile_sequence_quality", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "workflow_link", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "per_sequence_gc_content", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "per_base_n_content", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "adapter_content", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "workflow_end_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "per_base_sequence_quality", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "fastq_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_read_group_qc", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "total_sequences", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "total_aligned_reads", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "sequence_length_distribution", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "per_sequence_quality_score", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "workflow_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "overrepresented_sequences", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "workflow_start_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "workflow_version", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "read_group_qc", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "read_group_qc", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "percent_aligned", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "encoding", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "sequence_duplication_levels", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "basic_statistics", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "per_base_sequence_content", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "kmer_content", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "percent_gc_content", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "per_tile_sequence_quality", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "workflow_link", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "per_sequence_gc_content", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "per_base_n_content", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "adapter_content", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "workflow_end_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "per_base_sequence_quality", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "fastq_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_read_group_qc", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "total_sequences", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "total_aligned_reads", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "sequence_length_distribution", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "per_sequence_quality_score", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "workflow_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "overrepresented_sequences", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "workflow_start_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "workflow_version", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "release_date", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "released", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updated_datetime", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_root", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "schema_version", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "project", + "description": null, + "fields": [ + { + "name": "id", "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, "isDeprecated": false, - "name": "_read_group_qc_count", + "deprecationReason": null + }, + { + "name": "submitter_id", + "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - } + }, + "isDeprecated": false, + "deprecationReason": null }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_format", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_size", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "error_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "object_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_submitted_copy_number", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state_comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "md5sum", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_category", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "experimental_strategy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "project_id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_datetime", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_datetime", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "administering_ic", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "availability_mechanism", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "availability_type", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "code", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "data_description", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date_collected", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dbgap_accession_number", "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, - "name": "submitted_copy_number", + "deprecationReason": null + }, + { + "name": "institution", + "description": null, + "args": [], "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "submitted_copy_number", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "isDeprecated": false, + "deprecationReason": null }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_format", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_size", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "error_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "object_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_submitted_copy_number", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state_comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "md5sum", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_category", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "experimental_strategy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, + "name": "intended_release_date", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "investigator", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "investigator_affiliation", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "investigator_name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "location", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, - "name": "_submitted_copy_number_count", + "deprecationReason": null + }, + { + "name": "project_title", + "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "releasable", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "released", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "research_focus_area", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "research_program", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "state", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "support_id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "support_source", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null - } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "year_awarded", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null }, { + "name": "programs", + "description": null, "args": [ { - "defaultValue": null, - "description": null, - "name": "major_version", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, + "name": "id", "description": null, - "name": "order_by_asc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "submitter_id", "description": null, - "name": "updated_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "ids", "description": null, - "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -141777,232 +13224,102 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "quick_search", "description": null, - "name": "released", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "first", "description": null, - "name": "offset", "type": { "kind": "SCALAR", "name": "Int", "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_data_release", - "ofType": null - } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "offset", "description": null, - "name": "created_before", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_before", "description": null, - "name": "id", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_after", "description": null, - "name": "quick_search", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "release_date", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "minor_version", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_before", "description": null, - "name": "updated_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_after", "description": null, - "name": "created_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_asc", "description": null, - "name": "order_by_desc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_desc", "description": null, - "name": "first", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_links", "description": null, - "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -142011,77 +13328,26 @@ "name": "String", "ofType": null } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "data_release", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "data_release", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "major_version", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_links_any", "description": null, - "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_links", "description": null, - "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -142090,70 +13356,40 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to", "description": null, - "name": "released", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to_any", "description": null, - "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_data_release", + "name": "WithPathToInput", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_path_to", "description": null, - "name": "with_path_to", "type": { "kind": "LIST", "name": null, @@ -142162,22 +13398,12 @@ "name": "WithPathToInput", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "dbgap_accession_number", "description": null, - "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -142186,12 +13412,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "name", "description": null, - "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -142200,40 +13426,53 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "not", "description": null, - "name": "release_date", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_program", "ofType": null } - } - }, + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "program", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "core_metadata_collections", + "description": null, + "args": [ { - "defaultValue": null, + "name": "id", "description": null, - "name": "updated_datetime", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "submitter_id", "description": null, - "name": "ids", "type": { "kind": "LIST", "name": null, @@ -142242,141 +13481,116 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "ids", "description": null, - "name": "minor_version", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "quick_search", "description": null, - "name": "updated_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "first", "description": null, - "name": "created_after", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "offset", "description": null, - "name": "order_by_desc", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_before", "description": null, - "name": "first", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_after", "description": null, - "name": "with_links_any", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_data_release_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, { - "defaultValue": null, + "name": "updated_before", "description": null, - "name": "order_by_asc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_after", "description": null, - "name": "updated_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_asc", "description": null, - "name": "without_path_to", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_desc", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "with_links", "description": null, - "name": "submitter_id", "type": { "kind": "LIST", "name": null, @@ -142385,12 +13599,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_links_any", "description": null, - "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -142399,12 +13613,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_links", "description": null, - "name": "doi", "type": { "kind": "LIST", "name": null, @@ -142413,56 +13627,26 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to", "description": null, - "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_publication", + "name": "WithPathToInput", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to_any", "description": null, - "name": "with_path_to", "type": { "kind": "LIST", "name": null, @@ -142471,22 +13655,26 @@ "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_path_to", "description": null, - "name": "quick_search", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "accepts_healthy_volunteers", "description": null, - "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -142495,12 +13683,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "actual_enrollment", "description": null, - "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -142509,12 +13697,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "arm", "description": null, - "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -142523,12 +13711,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "arm_description", "description": null, - "name": "ids", "type": { "kind": "LIST", "name": null, @@ -142537,12 +13725,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "arm_name", "description": null, - "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -142551,12 +13739,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "arm_type", "description": null, - "name": "state", "type": { "kind": "LIST", "name": null, @@ -142565,56 +13753,26 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "brief_summary", "description": null, - "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "brief_title", "description": null, - "name": "pmid", "type": { "kind": "LIST", "name": null, @@ -142623,22 +13781,26 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "category", "description": null, - "name": "first", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "clinical_trial_website", "description": null, - "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -142647,63 +13809,40 @@ "name": "String", "ofType": null } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "publication", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "publication", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "collaborators", "description": null, - "name": "updated_before", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "condition", "description": null, - "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "contact", "description": null, - "name": "submitter_id", "type": { "kind": "LIST", "name": null, @@ -142712,12 +13851,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "contributor", "description": null, - "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -142726,12 +13865,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "coverage", "description": null, - "name": "doi", "type": { "kind": "LIST", "name": null, @@ -142740,80 +13879,96 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_datetime", "description": null, - "name": "offset", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "creator", "description": null, - "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_publication", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_availability_date", "description": null, - "name": "created_before", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_available", "description": null, - "name": "id", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_available_for_request", "description": null, - "name": "with_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_category", "description": null, - "name": "quick_search", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_format", "description": null, - "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -142822,12 +13977,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_type", "description": null, - "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -142836,12 +13991,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "description", "description": null, - "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -142850,12 +14005,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "eligibility_criteria", "description": null, - "name": "ids", "type": { "kind": "LIST", "name": null, @@ -142864,12 +14019,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "enrollment", "description": null, - "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -142878,12 +14033,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "fda_regulated_device_product", "description": null, - "name": "state", "type": { "kind": "LIST", "name": null, @@ -142892,56 +14047,68 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "fda_regulated_drug_product", "description": null, - "name": "updated_after", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "first_posted_date", "description": null, - "name": "created_after", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "focus", "description": null, - "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "has_data_monitoring_committee", "description": null, - "name": "order_by_desc", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "intervention_type", "description": null, - "name": "pmid", "type": { "kind": "LIST", "name": null, @@ -142950,22 +14117,26 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "ipd_sharing_statement", "description": null, - "name": "first", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "language", "description": null, - "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -142974,25 +14145,12 @@ "name": "String", "ofType": null } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_publication_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ + }, + "defaultValue": null + }, { - "defaultValue": null, + "name": "last_update_posted_date", "description": null, - "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -143001,12 +14159,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "location", "description": null, - "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -143015,46 +14173,54 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "locations_removed", "description": null, - "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "nct_number", "description": null, - "name": "order_by_asc", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "original_estimated_enrollment", "description": null, - "name": "updated_before", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "primary_completion_date", "description": null, - "name": "dbgap_accession_number", "type": { "kind": "LIST", "name": null, @@ -143063,26 +14229,26 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "principle_investigator", "description": null, - "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "project_id", "description": null, - "name": "ids", "type": { "kind": "LIST", "name": null, @@ -143091,12 +14257,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "prs_account", "description": null, - "name": "name", "type": { "kind": "LIST", "name": null, @@ -143105,76 +14271,96 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "publications", "description": null, - "name": "quick_search", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "publisher", "description": null, - "name": "updated_after", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "recruitment_status", "description": null, - "name": "created_after", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "responsible_party", "description": null, - "name": "offset", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "rights", "description": null, - "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_program", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "secondary_id", "description": null, - "name": "order_by_desc", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "source", "description": null, - "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -143183,73 +14369,54 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "state", "description": null, - "name": "created_before", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "study_completion_date", "description": null, - "name": "id", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "study_design_allocation", "description": null, - "name": "with_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "program", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "program", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, + "name": "study_design_intervention_model", "description": null, - "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -143258,12 +14425,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "study_design_masking", "description": null, - "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -143272,46 +14439,54 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "study_design_primary_purpose", "description": null, - "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "study_phase", "description": null, - "name": "order_by_asc", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "study_start_date", "description": null, - "name": "updated_before", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "subject", "description": null, - "name": "dbgap_accession_number", "type": { "kind": "LIST", "name": null, @@ -143320,26 +14495,26 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "submitted_date", "description": null, - "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "title", "description": null, - "name": "ids", "type": { "kind": "LIST", "name": null, @@ -143348,12 +14523,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_datetime", "description": null, - "name": "name", "type": { "kind": "LIST", "name": null, @@ -143362,181 +14537,209 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "us_product", "description": null, - "name": "quick_search", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "verification_date", "description": null, - "name": "updated_after", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "not", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_core_metadata_collection", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "core_metadata_collection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_programs_count", + "description": null, + "args": [ + { + "name": "id", "description": null, - "name": "created_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "submitter_id", "description": null, - "name": "offset", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "ids", "description": null, - "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_program", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "quick_search", "description": null, - "name": "order_by_desc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "first", "description": null, - "name": "with_links_any", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "offset", "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { "name": "created_before", + "description": null, "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_after", "description": null, - "name": "id", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_before", "description": null, - "name": "with_path_to", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_after", "description": null, - "name": "first", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_program_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ + }, + "defaultValue": null + }, { - "defaultValue": null, - "description": null, "name": "order_by_asc", + "description": null, "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_desc", "description": null, - "name": "updated_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_links", "description": null, - "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_links_any", "description": null, - "name": "acknowledgee", "type": { "kind": "LIST", "name": null, @@ -143545,12 +14748,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_links", "description": null, - "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -143559,70 +14762,40 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, + "name": "with_path_to", "description": null, - "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_acknowledgement", + "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to_any", "description": null, - "name": "submitter_id", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_path_to", "description": null, - "name": "with_path_to", "type": { "kind": "LIST", "name": null, @@ -143631,22 +14804,12 @@ "name": "WithPathToInput", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "administering_ic", "description": null, - "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -143655,12 +14818,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "availability_mechanism", "description": null, - "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -143669,12 +14832,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "availability_type", "description": null, - "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -143683,12 +14846,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "code", "description": null, - "name": "ids", "type": { "kind": "LIST", "name": null, @@ -143697,12 +14860,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_description", "description": null, - "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -143711,12 +14874,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "date_collected", "description": null, - "name": "state", "type": { "kind": "LIST", "name": null, @@ -143725,66 +14888,68 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "dbgap_accession_number", "description": null, - "name": "created_after", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "institution", "description": null, - "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "intended_release_date", "description": null, - "name": "order_by_desc", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "investigator", "description": null, - "name": "first", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "investigator_affiliation", "description": null, - "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -143793,63 +14958,40 @@ "name": "String", "ofType": null } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "acknowledgement", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "acknowledgement", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "investigator_name", "description": null, - "name": "updated_before", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "location", "description": null, - "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "name", "description": null, - "name": "acknowledgee", "type": { "kind": "LIST", "name": null, @@ -143858,12 +15000,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "project_title", "description": null, - "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -143872,36 +15014,40 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "releasable", "description": null, - "name": "offset", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "released", "description": null, - "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_acknowledgement", + "kind": "SCALAR", + "name": "Boolean", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "research_focus_area", "description": null, - "name": "submitter_id", "type": { "kind": "LIST", "name": null, @@ -143910,56 +15056,40 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "research_program", "description": null, - "name": "with_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "state", "description": null, - "name": "quick_search", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "support_id", "description": null, - "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -143968,12 +15098,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "support_source", "description": null, - "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -143982,26 +15112,26 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "year_awarded", "description": null, - "name": "updated_datetime", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "project_id", "description": null, - "name": "ids", "type": { "kind": "LIST", "name": null, @@ -144010,26 +15140,59 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "not", "description": null, - "name": "project_id", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_project", "ofType": null } - } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_core_metadata_collections_count", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "submitter_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "ids", "description": null, - "name": "state", "type": { "kind": "LIST", "name": null, @@ -144038,66 +15201,102 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "quick_search", "description": null, - "name": "updated_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_before", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { "name": "created_after", + "description": null, "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_before", "description": null, - "name": "with_path_to_any", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updated_after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_asc", "description": null, - "name": "order_by_desc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_desc", "description": null, - "name": "first", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_links", "description": null, - "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -144106,25 +15305,12 @@ "name": "String", "ofType": null } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_acknowledgement_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ + }, + "defaultValue": null + }, { - "defaultValue": null, + "name": "with_links_any", "description": null, - "name": "library_name", "type": { "kind": "LIST", "name": null, @@ -144133,50 +15319,54 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_links", "description": null, - "name": "is_paired_end", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to", "description": null, - "name": "order_by_asc", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to_any", "description": null, - "name": "adapter_sequence", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_path_to", "description": null, - "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, @@ -144185,12 +15375,12 @@ "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "administering_ic", "description": null, - "name": "library_strand", "type": { "kind": "LIST", "name": null, @@ -144199,12 +15389,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "availability_mechanism", "description": null, - "name": "submitter_id", "type": { "kind": "LIST", "name": null, @@ -144213,12 +15403,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "availability_type", "description": null, - "name": "library_preparation_kit_name", "type": { "kind": "LIST", "name": null, @@ -144227,12 +15417,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "code", "description": null, - "name": "base_caller_version", "type": { "kind": "LIST", "name": null, @@ -144241,12 +15431,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_description", "description": null, - "name": "target_capture_kit_name", "type": { "kind": "LIST", "name": null, @@ -144255,12 +15445,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "date_collected", "description": null, - "name": "library_preparation_kit_vendor", "type": { "kind": "LIST", "name": null, @@ -144269,12 +15459,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "dbgap_accession_number", "description": null, - "name": "base_caller_name", "type": { "kind": "LIST", "name": null, @@ -144283,46 +15473,40 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "institution", "description": null, - "name": "id", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "intended_release_date", "description": null, - "name": "with_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "investigator", "description": null, - "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -144331,12 +15515,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "investigator_affiliation", "description": null, - "name": "size_selection_range", "type": { "kind": "LIST", "name": null, @@ -144345,12 +15529,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "investigator_name", "description": null, - "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -144359,12 +15543,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "location", "description": null, - "name": "library_preparation_kit_version", "type": { "kind": "LIST", "name": null, @@ -144373,12 +15557,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "name", "description": null, - "name": "sequencing_date", "type": { "kind": "LIST", "name": null, @@ -144387,12 +15571,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "project_title", "description": null, - "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -144401,12 +15585,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "releasable", "description": null, - "name": "to_trim_adapter_sequence", "type": { "kind": "LIST", "name": null, @@ -144415,26 +15599,26 @@ "name": "Boolean", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "released", "description": null, - "name": "RIN", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "Boolean", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "research_focus_area", "description": null, - "name": "platform", "type": { "kind": "LIST", "name": null, @@ -144443,12 +15627,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "research_program", "description": null, - "name": "state", "type": { "kind": "LIST", "name": null, @@ -144457,12 +15641,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "state", "description": null, - "name": "flow_cell_barcode", "type": { "kind": "LIST", "name": null, @@ -144471,36 +15655,26 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "support_id", "description": null, - "name": "barcoding_applied", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "support_source", "description": null, - "name": "library_selection", "type": { "kind": "LIST", "name": null, @@ -144509,36 +15683,26 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "year_awarded", "description": null, - "name": "project_id", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "project_id", "description": null, - "name": "library_preparation_kit_catalog_number", "type": { "kind": "LIST", "name": null, @@ -144547,50 +15711,69 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "not", "description": null, - "name": "with_links_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_project", "ofType": null } - } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_transaction_logs_count", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "type", "description": null, - "name": "updated_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "quick_search", "description": null, - "name": "without_path_to", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "project_id", "description": null, - "name": "target_capture_kit_target_region", "type": { "kind": "LIST", "name": null, @@ -144599,26 +15782,52 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "project", "description": null, - "name": "target_capture_kit_version", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "program", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_asc", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by_desc", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "related_cases", "description": null, - "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -144627,50 +15836,42 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "first", "description": null, - "name": "offset", "type": { "kind": "SCALAR", "name": "Int", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "last", "description": null, - "name": "not", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_read_group", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "offset", "description": null, - "name": "instrument_model", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "entities", "description": null, - "name": "read_group_name", "type": { "kind": "LIST", "name": null, @@ -144679,22 +15880,105 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "is_dry_run", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "closed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "committable", + "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "state", "description": null, - "name": "quick_search", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null + }, + { + "name": "committed_by", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_transaction_logs", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "quick_search", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "project_id", "description": null, - "name": "library_strategy", "type": { "kind": "LIST", "name": null, @@ -144703,12 +15987,52 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null + }, + { + "name": "project", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "program", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by_asc", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by_desc", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "related_cases", "description": null, - "name": "spike_ins_concentration", "type": { "kind": "LIST", "name": null, @@ -144717,12 +16041,42 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "entities", "description": null, - "name": "adapter_name", "type": { "kind": "LIST", "name": null, @@ -144731,12 +16085,99 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null + }, + { + "name": "is_dry_run", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "closed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "committable", + "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "state", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "committed_by", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TransactionLog", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_links", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "submitter_id", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { "name": "ids", + "description": null, "type": { "kind": "LIST", "name": null, @@ -144745,185 +16186,272 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "quick_search", "description": null, - "name": "includes_spike_ins", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "10" }, { - "defaultValue": null, + "name": "offset", "description": null, - "name": "read_length", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_before", "description": null, - "name": "experiment_name", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "created_after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_before", "description": null, - "name": "updated_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_after", "description": null, - "name": "spike_ins_fasta", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_asc", "description": null, - "name": "target_capture_kit_vendor", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_desc", "description": null, - "name": "target_capture_kit_catalog_number", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "project_id", "description": null, - "name": "sequencing_center", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "category", "description": null, - "name": "first", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - } + }, + "defaultValue": null } ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "read_group", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "read_group", + "kind": "INTERFACE", + "name": "Node", "ofType": null } - } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "program", + "description": null, + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "submitter_id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "project_id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_datetime", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_datetime", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dbgap_accession_number", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null }, { + "name": "projects", + "description": null, "args": [ { - "defaultValue": null, - "description": null, - "name": "library_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, + "name": "id", "description": null, - "name": "is_paired_end", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "submitter_id", "description": null, - "name": "order_by_asc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "ids", "description": null, - "name": "adapter_sequence", "type": { "kind": "LIST", "name": null, @@ -144932,158 +16460,116 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "quick_search", "description": null, - "name": "library_strand", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "first", "description": null, - "name": "submitter_id", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "offset", "description": null, - "name": "library_preparation_kit_name", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_before", "description": null, - "name": "base_caller_version", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_after", "description": null, - "name": "target_capture_kit_name", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_before", "description": null, - "name": "library_preparation_kit_vendor", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_after", "description": null, - "name": "base_caller_name", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_asc", "description": null, - "name": "created_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_desc", "description": null, - "name": "id", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_links", "description": null, - "name": "with_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_links_any", "description": null, - "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -145092,12 +16578,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_links", "description": null, - "name": "size_selection_range", "type": { "kind": "LIST", "name": null, @@ -145106,54 +16592,54 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to", "description": null, - "name": "created_datetime", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to_any", "description": null, - "name": "library_preparation_kit_version", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_path_to", "description": null, - "name": "sequencing_date", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "administering_ic", "description": null, - "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -145162,40 +16648,40 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "availability_mechanism", "description": null, - "name": "to_trim_adapter_sequence", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "availability_type", "description": null, - "name": "RIN", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "code", "description": null, - "name": "platform", "type": { "kind": "LIST", "name": null, @@ -145204,12 +16690,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_description", "description": null, - "name": "state", "type": { "kind": "LIST", "name": null, @@ -145218,12 +16704,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "date_collected", "description": null, - "name": "flow_cell_barcode", "type": { "kind": "LIST", "name": null, @@ -145232,36 +16718,26 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "dbgap_accession_number", "description": null, - "name": "barcoding_applied", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "institution", "description": null, - "name": "library_selection", "type": { "kind": "LIST", "name": null, @@ -145270,22 +16746,12 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "intended_release_date", "description": null, - "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -145294,12 +16760,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "investigator", "description": null, - "name": "library_preparation_kit_catalog_number", "type": { "kind": "LIST", "name": null, @@ -145308,12 +16774,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "investigator_affiliation", "description": null, - "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -145322,36 +16788,26 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "investigator_name", "description": null, - "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "location", "description": null, - "name": "target_capture_kit_target_region", "type": { "kind": "LIST", "name": null, @@ -145360,12 +16816,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "name", "description": null, - "name": "target_capture_kit_version", "type": { "kind": "LIST", "name": null, @@ -145374,12 +16830,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "project_title", "description": null, - "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -145388,50 +16844,40 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "releasable", "description": null, - "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_read_group", + "kind": "SCALAR", + "name": "Boolean", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "released", "description": null, - "name": "instrument_model", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "research_focus_area", "description": null, - "name": "read_group_name", "type": { "kind": "LIST", "name": null, @@ -145440,22 +16886,12 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "research_program", "description": null, - "name": "library_strategy", "type": { "kind": "LIST", "name": null, @@ -145464,12 +16900,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "state", "description": null, - "name": "spike_ins_concentration", "type": { "kind": "LIST", "name": null, @@ -145478,12 +16914,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "support_id", "description": null, - "name": "adapter_name", "type": { "kind": "LIST", "name": null, @@ -145492,12 +16928,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "support_source", "description": null, - "name": "ids", "type": { "kind": "LIST", "name": null, @@ -145506,64 +16942,91 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "year_awarded", "description": null, - "name": "includes_spike_ins", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "Float", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "project_id", "description": null, - "name": "read_length", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "not", "description": null, - "name": "experiment_name", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_project", "ofType": null } - } + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "project", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_projects_count", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "submitter_id", "description": null, - "name": "updated_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "ids", "description": null, - "name": "spike_ins_fasta", "type": { "kind": "LIST", "name": null, @@ -145572,115 +17035,116 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "quick_search", "description": null, - "name": "target_capture_kit_vendor", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "created_before", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_after", "description": null, - "name": "target_capture_kit_catalog_number", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_before", "description": null, - "name": "sequencing_center", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_after", "description": null, - "name": "first", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_read_group_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ + }, + "defaultValue": null + }, { - "defaultValue": null, - "description": null, "name": "order_by_asc", + "description": null, "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_desc", "description": null, - "name": "updated_datetime", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_links", "description": null, - "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_links_any", "description": null, - "name": "submitter_id", "type": { "kind": "LIST", "name": null, @@ -145689,46 +17153,26 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_links", "description": null, - "name": "days_to_treatment", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, - "description": null, "name": "with_path_to", + "description": null, "type": { "kind": "LIST", "name": null, @@ -145737,40 +17181,40 @@ "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to_any", "description": null, - "name": "without_links", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_path_to", "description": null, - "name": "created_datetime", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "dbgap_accession_number", "description": null, - "name": "treatment_outcome", "type": { "kind": "LIST", "name": null, @@ -145779,12 +17223,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "name", "description": null, - "name": "treatment_type", "type": { "kind": "LIST", "name": null, @@ -145793,60 +17237,69 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "not", "description": null, - "name": "state", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_program", "ofType": null } - } - }, + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_transaction_logs_count", + "description": null, + "args": [ { - "defaultValue": null, + "name": "id", "description": null, - "name": "created_after", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "type", "description": null, - "name": "order_by_desc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "quick_search", "description": null, - "name": "project_id", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "project_id", "description": null, - "name": "treatment_intent_type", "type": { "kind": "LIST", "name": null, @@ -145855,64 +17308,52 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "project", "description": null, - "name": "treatment_or_therapy", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "program", "description": null, - "name": "with_links_any", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_asc", "description": null, - "name": "updated_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_desc", "description": null, - "name": "without_path_to", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "related_cases", "description": null, - "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -145921,50 +17362,42 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "first", "description": null, - "name": "therapeutic_agents", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "last", "description": null, - "name": "offset", "type": { "kind": "SCALAR", "name": "Int", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "offset", "description": null, - "name": "not", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_treatment", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "entities", "description": null, - "name": "treatment_anatomic_site", "type": { "kind": "LIST", "name": null, @@ -145973,139 +17406,105 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "days_to_treatment_end", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "is_dry_run", "description": null, - "name": "quick_search", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "closed", "description": null, - "name": "days_to_treatment_start", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, - "description": null, - "name": "ids", + "name": "committable", + "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "state", "description": null, - "name": "updated_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "committed_by", "description": null, - "name": "first", "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null - } + }, + "defaultValue": null } ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "treatment", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "treatment", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null }, { + "name": "_transaction_logs", + "description": null, "args": [ { - "defaultValue": null, + "name": "id", "description": null, - "name": "order_by_asc", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "type", "description": null, - "name": "updated_datetime", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "quick_search", "description": null, - "name": "with_path_to_any", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "project_id", "description": null, - "name": "submitter_id", "type": { "kind": "LIST", "name": null, @@ -146114,60 +17513,52 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "project", "description": null, - "name": "days_to_treatment", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "program", "description": null, - "name": "created_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_asc", "description": null, - "name": "id", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_desc", "description": null, - "name": "with_path_to", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "related_cases", "description": null, - "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -146176,54 +17567,42 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "first", "description": null, - "name": "created_datetime", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "last", "description": null, - "name": "treatment_outcome", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "offset", "description": null, - "name": "treatment_type", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "entities", "description": null, - "name": "state", "type": { "kind": "LIST", "name": null, @@ -146232,976 +17611,1371 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "is_dry_run", "description": null, - "name": "created_after", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "closed", "description": null, - "name": "order_by_desc", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, - "description": null, - "name": "project_id", + "name": "committable", + "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "state", "description": null, - "name": "treatment_intent_type", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "committed_by", "description": null, - "name": "treatment_or_therapy", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TransactionLog", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_links", + "description": null, + "args": [ { - "defaultValue": null, + "name": "id", "description": null, - "name": "with_links_any", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "submitter_id", "description": null, - "name": "updated_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "ids", "description": null, - "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "quick_search", "description": null, - "name": "with_links", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "first", "description": null, - "name": "therapeutic_agents", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "10" }, { - "defaultValue": null, - "description": null, "name": "offset", + "description": null, "type": { "kind": "SCALAR", "name": "Int", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_before", "description": null, - "name": "not", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_treatment", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_after", "description": null, - "name": "treatment_anatomic_site", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_before", "description": null, - "name": "days_to_treatment_end", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_after", "description": null, - "name": "quick_search", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_asc", "description": null, - "name": "days_to_treatment_start", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_desc", "description": null, - "name": "ids", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "project_id", "description": null, - "name": "updated_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "category", "description": null, - "name": "first", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - } + }, + "defaultValue": null } ], - "deprecationReason": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_project", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "administering_ic", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "availability_mechanism", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "availability_type", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "code", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "data_description", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "date_collected", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "dbgap_accession_number", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "institution", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "intended_release_date", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "investigator", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "investigator_affiliation", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "investigator_name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "location", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "project_title", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "releasable", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "released", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "research_focus_area", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "research_program", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "state", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "support_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "support_source", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "year_awarded", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "project_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_program", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "dbgap_accession_number", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "core_metadata_collection", + "description": null, + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "submitter_id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "project_id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_datetime", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_datetime", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "accepts_healthy_volunteers", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "actual_enrollment", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "arm", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "arm_description", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "arm_name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "arm_type", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "brief_summary", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "brief_title", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "category", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "clinical_trial_website", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "collaborators", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "condition", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "contact", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "contributor", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "coverage", "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, - "name": "_treatment_count", + "deprecationReason": null + }, + { + "name": "creator", + "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - } + }, + "isDeprecated": false, + "deprecationReason": null }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "biomarker_signal", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "run_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "cell_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "relative_nuclear_size", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "er_localization", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "relative_er_intensity", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ck_signal", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "relative_nuclear_intensity", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "cell_count", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_slide_count", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "relative_cytokeratin_intensity", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "frame_identifier", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "cell_identifier", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, + "name": "data_availability_date", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "data_available", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "data_available_for_request", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "data_category", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "data_format", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "data_type", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "eligibility_criteria", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "enrollment", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fda_regulated_device_product", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fda_regulated_drug_product", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "first_posted_date", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "focus", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "has_data_monitoring_committee", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "intervention_type", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ipd_sharing_statement", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "language", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "last_update_posted_date", "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, - "name": "slide_count", + "deprecationReason": null + }, + { + "name": "location", + "description": null, + "args": [], "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "slide_count", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "isDeprecated": false, + "deprecationReason": null }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "biomarker_signal", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "run_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "cell_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "relative_nuclear_size", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "er_localization", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "relative_er_intensity", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, + "name": "locations_removed", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nct_number", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "original_estimated_enrollment", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "primary_completion_date", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "principle_investigator", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "prs_account", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "publications", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "publisher", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "recruitment_status", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "responsible_party", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "rights", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "secondary_id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "source", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "state", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "study_completion_date", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "study_design_allocation", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "study_design_intervention_model", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "study_design_masking", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "study_design_primary_purpose", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "study_phase", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "study_start_date", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subject", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "submitted_date", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "title", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "us_product", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "verification_date", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projects", + "description": null, + "args": [ { - "defaultValue": null, + "name": "id", "description": null, - "name": "created_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "submitter_id", "description": null, - "name": "order_by_desc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "ids", "description": null, - "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -147210,239 +18984,102 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ck_signal", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "relative_nuclear_intensity", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "quick_search", "description": null, - "name": "updated_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "cell_count", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "first", "description": null, - "name": "offset", "type": { "kind": "SCALAR", "name": "Int", "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_slide_count", - "ofType": null - } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "offset", "description": null, - "name": "relative_cytokeratin_intensity", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_before", "description": null, - "name": "quick_search", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "frame_identifier", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_after", "description": null, - "name": "cell_identifier", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_before", "description": null, - "name": "ids", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, - "description": null, "name": "updated_after", + "description": null, "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_asc", "description": null, - "name": "first", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_slide_count_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "year_of_diagnosis", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_desc", "description": null, - "name": "order_by_asc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_links", "description": null, - "name": "method_of_diagnosis", "type": { "kind": "LIST", "name": null, @@ -147451,12 +19088,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_links_any", "description": null, - "name": "laterality", "type": { "kind": "LIST", "name": null, @@ -147465,12 +19102,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_links", "description": null, - "name": "ann_arbor_pathologic_stage", "type": { "kind": "LIST", "name": null, @@ -147479,54 +19116,54 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to", "description": null, - "name": "submitter_id", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to_any", "description": null, - "name": "vital_status", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_path_to", "description": null, - "name": "morphology", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "administering_ic", "description": null, - "name": "ann_arbor_clinical_stage", "type": { "kind": "LIST", "name": null, @@ -147535,36 +19172,26 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "availability_mechanism", "description": null, - "name": "days_to_last_known_disease_status", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "availability_type", "description": null, - "name": "perineural_invasion_present", "type": { "kind": "LIST", "name": null, @@ -147573,26 +19200,26 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "code", "description": null, - "name": "days_to_hiv_diagnosis", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_description", "description": null, - "name": "ajcc_pathologic_m", "type": { "kind": "LIST", "name": null, @@ -147601,26 +19228,26 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "date_collected", "description": null, - "name": "days_to_last_follow_up", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "dbgap_accession_number", "description": null, - "name": "prior_treatment", "type": { "kind": "LIST", "name": null, @@ -147629,12 +19256,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "institution", "description": null, - "name": "ajcc_clinical_t", "type": { "kind": "LIST", "name": null, @@ -147643,12 +19270,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "intended_release_date", "description": null, - "name": "colon_polyps_history", "type": { "kind": "LIST", "name": null, @@ -147657,12 +19284,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "investigator", "description": null, - "name": "ajcc_pathologic_n", "type": { "kind": "LIST", "name": null, @@ -147671,12 +19298,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "investigator_affiliation", "description": null, - "name": "ajcc_clinical_n", "type": { "kind": "LIST", "name": null, @@ -147685,12 +19312,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "investigator_name", "description": null, - "name": "ajcc_clinical_m", "type": { "kind": "LIST", "name": null, @@ -147699,36 +19326,26 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "location", "description": null, - "name": "ldh_level_at_diagnosis", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "name", "description": null, - "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -147737,12 +19354,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "project_title", "description": null, - "name": "residual_disease", "type": { "kind": "LIST", "name": null, @@ -147751,64 +19368,40 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "releasable", "description": null, - "name": "ajcc_pathologic_stage", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "released", "description": null, - "name": "lymphatic_invasion_present", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "research_focus_area", "description": null, - "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -147817,12 +19410,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "research_program", "description": null, - "name": "progression_or_recurrence", "type": { "kind": "LIST", "name": null, @@ -147831,26 +19424,12 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_diagnosis", - "ofType": null - } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "state", "description": null, - "name": "cause_of_death", "type": { "kind": "LIST", "name": null, @@ -147859,12 +19438,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "support_id", "description": null, - "name": "burkitt_lymphoma_clinical_variant", "type": { "kind": "LIST", "name": null, @@ -147873,12 +19452,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "support_source", "description": null, - "name": "ann_arbor_extranodal_involvement", "type": { "kind": "LIST", "name": null, @@ -147887,36 +19466,26 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "year_awarded", "description": null, - "name": "ajcc_clinical_stage", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "project_id", "description": null, - "name": "hiv_positive", "type": { "kind": "LIST", "name": null, @@ -147925,40 +19494,53 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "not", "description": null, - "name": "ann_arbor_b_symptoms", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_project", "ofType": null } - } - }, + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "project", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "open_access_docs", + "description": null, + "args": [ { - "defaultValue": null, + "name": "id", "description": null, - "name": "classification_of_tumor", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "submitter_id", "description": null, - "name": "last_known_disease_status", "type": { "kind": "LIST", "name": null, @@ -147967,12 +19549,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "ids", "description": null, - "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -147981,134 +19563,102 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "quick_search", "description": null, - "name": "with_path_to_any", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "first", "description": null, - "name": "primary_diagnosis", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "offset", "description": null, - "name": "tumor_stage", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_before", "description": null, - "name": "age_at_diagnosis", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_after", "description": null, - "name": "hpv_positive_type", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_before", "description": null, - "name": "days_to_death", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_after", "description": null, - "name": "id", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_asc", "description": null, - "name": "with_path_to", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_desc", "description": null, - "name": "without_links", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_links", "description": null, - "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -148117,12 +19667,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_links_any", "description": null, - "name": "vascular_invasion_present", "type": { "kind": "LIST", "name": null, @@ -148131,12 +19681,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_links", "description": null, - "name": "new_event_anatomic_site", "type": { "kind": "LIST", "name": null, @@ -148145,64 +19695,54 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to", "description": null, - "name": "state", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to_any", "description": null, - "name": "days_to_recurrence", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_path_to", "description": null, - "name": "with_links_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_datetime", "description": null, - "name": "tumor_grade", "type": { "kind": "LIST", "name": null, @@ -148211,12 +19751,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_category", "description": null, - "name": "figo_stage", "type": { "kind": "LIST", "name": null, @@ -148225,12 +19765,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_format", "description": null, - "name": "tissue_or_organ_of_origin", "type": { "kind": "LIST", "name": null, @@ -148239,36 +19779,26 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_type", "description": null, - "name": "days_to_birth", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "doc_url", "description": null, - "name": "hpv_status", "type": { "kind": "LIST", "name": null, @@ -148277,12 +19807,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "error_type", "description": null, - "name": "prior_malignancy", "type": { "kind": "LIST", "name": null, @@ -148291,12 +19821,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "file_name", "description": null, - "name": "new_event_type", "type": { "kind": "LIST", "name": null, @@ -148305,22 +19835,12 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "file_size", "description": null, - "name": "days_to_new_event", "type": { "kind": "LIST", "name": null, @@ -148329,54 +19849,54 @@ "name": "Float", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "file_state", "description": null, - "name": "circumferential_resection_margin", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "md5sum", "description": null, - "name": "ldh_normal_range_upper", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "object_id", "description": null, - "name": "lymph_nodes_positive", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "project_id", "description": null, - "name": "ids", "type": { "kind": "LIST", "name": null, @@ -148385,12 +19905,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "state", "description": null, - "name": "site_of_resection_or_biopsy", "type": { "kind": "LIST", "name": null, @@ -148399,12 +19919,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_datetime", "description": null, - "name": "ajcc_pathologic_t", "type": { "kind": "LIST", "name": null, @@ -148413,63 +19933,171 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "not", "description": null, - "name": "first", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_open_access_doc", + "ofType": null + } + }, + "defaultValue": null } ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "diagnosis", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "OBJECT", - "name": "diagnosis", + "name": "open_access_doc", "ofType": null } - } + }, + "isDeprecated": false, + "deprecationReason": null }, { + "name": "clinical_trial_files", + "description": null, "args": [ { - "defaultValue": null, + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "submitter_id", "description": null, - "name": "year_of_diagnosis", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - } + }, + "defaultValue": null + }, + { + "name": "ids", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "quick_search", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "created_before", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "created_after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updated_before", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_after", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { "name": "order_by_asc", + "description": null, "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null + }, + { + "name": "order_by_desc", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_links", "description": null, - "name": "method_of_diagnosis", "type": { "kind": "LIST", "name": null, @@ -148478,12 +20106,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_links_any", "description": null, - "name": "laterality", "type": { "kind": "LIST", "name": null, @@ -148492,12 +20120,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_links", "description": null, - "name": "ann_arbor_pathologic_stage", "type": { "kind": "LIST", "name": null, @@ -148506,54 +20134,54 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to", "description": null, - "name": "submitter_id", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to_any", "description": null, - "name": "vital_status", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_path_to", "description": null, - "name": "morphology", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_datetime", "description": null, - "name": "ann_arbor_clinical_stage", "type": { "kind": "LIST", "name": null, @@ -148562,36 +20190,40 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_category", "description": null, - "name": "created_before", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_format", "description": null, - "name": "days_to_last_known_disease_status", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_type", "description": null, - "name": "perineural_invasion_present", "type": { "kind": "LIST", "name": null, @@ -148600,26 +20232,26 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "error_type", "description": null, - "name": "days_to_hiv_diagnosis", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "file_name", "description": null, - "name": "ajcc_pathologic_m", "type": { "kind": "LIST", "name": null, @@ -148628,12 +20260,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "file_size", "description": null, - "name": "days_to_last_follow_up", "type": { "kind": "LIST", "name": null, @@ -148642,12 +20274,12 @@ "name": "Float", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "file_state", "description": null, - "name": "prior_treatment", "type": { "kind": "LIST", "name": null, @@ -148656,12 +20288,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "md5sum", "description": null, - "name": "ajcc_clinical_t", "type": { "kind": "LIST", "name": null, @@ -148670,12 +20302,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "object_id", "description": null, - "name": "colon_polyps_history", "type": { "kind": "LIST", "name": null, @@ -148684,12 +20316,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "project_id", "description": null, - "name": "ajcc_pathologic_n", "type": { "kind": "LIST", "name": null, @@ -148698,12 +20330,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "state", "description": null, - "name": "ajcc_clinical_n", "type": { "kind": "LIST", "name": null, @@ -148712,12 +20344,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_datetime", "description": null, - "name": "ajcc_clinical_m", "type": { "kind": "LIST", "name": null, @@ -148726,36 +20358,53 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "not", "description": null, - "name": "ldh_level_at_diagnosis", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_clinical_trial_file", "ofType": null } - } - }, + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "clinical_trial_file", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_projects_count", + "description": null, + "args": [ { - "defaultValue": null, + "name": "id", "description": null, - "name": "created_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "submitter_id", "description": null, - "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -148764,12 +20413,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "ids", "description": null, - "name": "residual_disease", "type": { "kind": "LIST", "name": null, @@ -148778,36 +20427,116 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null + }, + { + "name": "quick_search", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "created_before", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_after", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { "name": "updated_before", + "description": null, "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by_asc", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by_desc", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "with_links", "description": null, - "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_links_any", "description": null, - "name": "ajcc_pathologic_stage", "type": { "kind": "LIST", "name": null, @@ -148816,12 +20545,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_links", "description": null, - "name": "lymphatic_invasion_present", "type": { "kind": "LIST", "name": null, @@ -148830,54 +20559,54 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to", "description": null, - "name": "with_links", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to_any", "description": null, - "name": "progression_or_recurrence", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_path_to", "description": null, - "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_diagnosis", + "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "accepts_healthy_volunteers", "description": null, - "name": "cause_of_death", "type": { "kind": "LIST", "name": null, @@ -148886,12 +20615,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "actual_enrollment", "description": null, - "name": "burkitt_lymphoma_clinical_variant", "type": { "kind": "LIST", "name": null, @@ -148900,12 +20629,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "arm", "description": null, - "name": "ann_arbor_extranodal_involvement", "type": { "kind": "LIST", "name": null, @@ -148914,22 +20643,12 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "arm_description", "description": null, - "name": "ajcc_clinical_stage", "type": { "kind": "LIST", "name": null, @@ -148938,12 +20657,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "arm_name", "description": null, - "name": "hiv_positive", "type": { "kind": "LIST", "name": null, @@ -148952,12 +20671,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "arm_type", "description": null, - "name": "ann_arbor_b_symptoms", "type": { "kind": "LIST", "name": null, @@ -148966,12 +20685,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "brief_summary", "description": null, - "name": "classification_of_tumor", "type": { "kind": "LIST", "name": null, @@ -148980,12 +20699,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "brief_title", "description": null, - "name": "last_known_disease_status", "type": { "kind": "LIST", "name": null, @@ -148994,12 +20713,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "category", "description": null, - "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -149008,26 +20727,26 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "clinical_trial_website", "description": null, - "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "collaborators", "description": null, - "name": "primary_diagnosis", "type": { "kind": "LIST", "name": null, @@ -149036,12 +20755,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "condition", "description": null, - "name": "tumor_stage", "type": { "kind": "LIST", "name": null, @@ -149050,26 +20769,26 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "contact", "description": null, - "name": "age_at_diagnosis", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "contributor", "description": null, - "name": "hpv_positive_type", "type": { "kind": "LIST", "name": null, @@ -149078,50 +20797,54 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "coverage", "description": null, - "name": "days_to_death", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_datetime", "description": null, - "name": "id", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "creator", "description": null, - "name": "with_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_availability_date", "description": null, - "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -149130,12 +20853,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_available", "description": null, - "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -149144,26 +20867,26 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_available_for_request", "description": null, - "name": "vascular_invasion_present", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_category", "description": null, - "name": "new_event_anatomic_site", "type": { "kind": "LIST", "name": null, @@ -149172,12 +20895,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_format", "description": null, - "name": "state", "type": { "kind": "LIST", "name": null, @@ -149186,36 +20909,40 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_type", "description": null, - "name": "order_by_desc", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "description", "description": null, - "name": "days_to_recurrence", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "eligibility_criteria", "description": null, - "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -149224,12 +20951,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "enrollment", "description": null, - "name": "tumor_grade", "type": { "kind": "LIST", "name": null, @@ -149238,12 +20965,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "fda_regulated_device_product", "description": null, - "name": "figo_stage", "type": { "kind": "LIST", "name": null, @@ -149252,12 +20979,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "fda_regulated_drug_product", "description": null, - "name": "tissue_or_organ_of_origin", "type": { "kind": "LIST", "name": null, @@ -149266,36 +20993,40 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "first_posted_date", "description": null, - "name": "days_to_birth", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "focus", "description": null, - "name": "offset", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "has_data_monitoring_committee", "description": null, - "name": "hpv_status", "type": { "kind": "LIST", "name": null, @@ -149304,12 +21035,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "intervention_type", "description": null, - "name": "prior_malignancy", "type": { "kind": "LIST", "name": null, @@ -149318,12 +21049,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "ipd_sharing_statement", "description": null, - "name": "new_event_type", "type": { "kind": "LIST", "name": null, @@ -149332,78 +21063,82 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "language", "description": null, - "name": "quick_search", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "last_update_posted_date", "description": null, - "name": "days_to_new_event", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "location", "description": null, - "name": "circumferential_resection_margin", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "locations_removed", "description": null, - "name": "ldh_normal_range_upper", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "nct_number", "description": null, - "name": "lymph_nodes_positive", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "original_estimated_enrollment", "description": null, - "name": "ids", "type": { "kind": "LIST", "name": null, @@ -149412,12 +21147,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "primary_completion_date", "description": null, - "name": "site_of_resection_or_biopsy", "type": { "kind": "LIST", "name": null, @@ -149426,12 +21161,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "principle_investigator", "description": null, - "name": "ajcc_pathologic_t", "type": { "kind": "LIST", "name": null, @@ -149440,59 +21175,40 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_diagnosis_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, + "name": "project_id", "description": null, - "name": "cigarettes_per_day", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "prs_account", "description": null, - "name": "order_by_asc", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "publications", "description": null, - "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -149501,54 +21217,54 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "publisher", "description": null, - "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "recruitment_status", "description": null, - "name": "years_smoked", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "responsible_party", "description": null, - "name": "height", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "rights", "description": null, - "name": "tobacco_smoking_status", "type": { "kind": "LIST", "name": null, @@ -149557,60 +21273,40 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "secondary_id", "description": null, - "name": "with_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "source", "description": null, - "name": "pack_years_smoked", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "state", "description": null, - "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -149619,26 +21315,26 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "study_completion_date", "description": null, - "name": "weight", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "study_design_allocation", "description": null, - "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -149647,12 +21343,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "study_design_intervention_model", "description": null, - "name": "state", "type": { "kind": "LIST", "name": null, @@ -149661,46 +21357,26 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "study_design_masking", "description": null, - "name": "tobacco_smoking_onset_year", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "study_design_primary_purpose", "description": null, - "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -149709,12 +21385,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "study_phase", "description": null, - "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -149723,22 +21399,26 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "study_start_date", "description": null, - "name": "updated_before", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "subject", "description": null, - "name": "alcohol_history", "type": { "kind": "LIST", "name": null, @@ -149747,40 +21427,40 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "submitted_date", "description": null, - "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "title", "description": null, - "name": "bmi", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_datetime", "description": null, - "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -149789,60 +21469,77 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "us_product", "description": null, - "name": "offset", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "verification_date", "description": null, - "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_exposure", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "not", "description": null, - "name": "submitter_id", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_core_metadata_collection", "ofType": null } - } - }, + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_open_access_docs_count", + "description": null, + "args": [ { - "defaultValue": null, + "name": "id", "description": null, - "name": "quick_search", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "submitter_id", "description": null, - "name": "alcohol_intensity", "type": { "kind": "LIST", "name": null, @@ -149851,12 +21548,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, - "description": null, "name": "ids", + "description": null, "type": { "kind": "LIST", "name": null, @@ -149865,87 +21562,102 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "quick_search", "description": null, - "name": "updated_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "first", "description": null, - "name": "tobacco_smoking_quit_year", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "offset", "description": null, - "name": "first", "type": { "kind": "SCALAR", "name": "Int", "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "exposure", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "exposure", - "ofType": null - } - } - }, - { - "args": [ + }, + "defaultValue": null + }, { - "defaultValue": null, + "name": "created_before", "description": null, - "name": "cigarettes_per_day", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "created_after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updated_before", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_after", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { "name": "order_by_asc", + "description": null, "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_desc", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "with_links", "description": null, - "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -149954,88 +21666,68 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_links_any", "description": null, - "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_links", "description": null, - "name": "years_smoked", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to", "description": null, - "name": "height", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to_any", "description": null, - "name": "tobacco_smoking_status", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_path_to", "description": null, - "name": "with_path_to", "type": { "kind": "LIST", "name": null, @@ -150044,26 +21736,26 @@ "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "accepts_healthy_volunteers", "description": null, - "name": "pack_years_smoked", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "actual_enrollment", "description": null, - "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -150072,26 +21764,26 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "arm", "description": null, - "name": "weight", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "arm_description", "description": null, - "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -150100,12 +21792,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "arm_name", "description": null, - "name": "state", "type": { "kind": "LIST", "name": null, @@ -150114,46 +21806,54 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "arm_type", "description": null, - "name": "created_after", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "brief_summary", "description": null, - "name": "tobacco_smoking_onset_year", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "brief_title", "description": null, - "name": "order_by_desc", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "category", "description": null, - "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -150162,12 +21862,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "clinical_trial_website", "description": null, - "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -150176,22 +21876,26 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "collaborators", "description": null, - "name": "updated_before", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "condition", "description": null, - "name": "alcohol_history", "type": { "kind": "LIST", "name": null, @@ -150200,40 +21904,40 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "contact", "description": null, - "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "contributor", "description": null, - "name": "bmi", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "coverage", "description": null, - "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -150242,36 +21946,40 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_datetime", "description": null, - "name": "offset", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "creator", "description": null, - "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_exposure", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_availability_date", "description": null, - "name": "submitter_id", "type": { "kind": "LIST", "name": null, @@ -150280,36 +21988,40 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_available", "description": null, - "name": "quick_search", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_available_for_request", "description": null, - "name": "alcohol_intensity", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_category", "description": null, - "name": "ids", "type": { "kind": "LIST", "name": null, @@ -150318,93 +22030,82 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_format", "description": null, - "name": "updated_after", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_type", "description": null, - "name": "tobacco_smoking_quit_year", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_exposure_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, + "name": "description", "description": null, - "name": "order_by_asc", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "eligibility_criteria", "description": null, - "name": "updated_before", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "enrollment", "description": null, - "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "fda_regulated_device_product", "description": null, - "name": "submitter_id", "type": { "kind": "LIST", "name": null, @@ -150413,12 +22114,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "fda_regulated_drug_product", "description": null, - "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -150427,80 +22128,96 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "first_posted_date", "description": null, - "name": "offset", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "focus", "description": null, - "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_case", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "has_data_monitoring_committee", "description": null, - "name": "created_before", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "intervention_type", "description": null, - "name": "id", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "ipd_sharing_statement", "description": null, - "name": "with_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "language", "description": null, - "name": "quick_search", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "last_update_posted_date", "description": null, - "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -150509,12 +22226,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "location", "description": null, - "name": "disease_type", "type": { "kind": "LIST", "name": null, @@ -150523,12 +22240,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "locations_removed", "description": null, - "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -150537,12 +22254,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "nct_number", "description": null, - "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -150551,12 +22268,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "original_estimated_enrollment", "description": null, - "name": "ids", "type": { "kind": "LIST", "name": null, @@ -150565,12 +22282,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "primary_completion_date", "description": null, - "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -150579,12 +22296,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "principle_investigator", "description": null, - "name": "state", "type": { "kind": "LIST", "name": null, @@ -150593,22 +22310,12 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "project_id", "description": null, - "name": "primary_site", "type": { "kind": "LIST", "name": null, @@ -150617,56 +22324,26 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "prs_account", "description": null, - "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "publications", "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -150675,63 +22352,26 @@ "name": "String", "ofType": null } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "case", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "case", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "publisher", "description": null, - "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "recruitment_status", "description": null, - "name": "submitter_id", "type": { "kind": "LIST", "name": null, @@ -150740,12 +22380,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "responsible_party", "description": null, - "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -150754,80 +22394,68 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "rights", "description": null, - "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_case", + "kind": "SCALAR", + "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "secondary_id", "description": null, - "name": "id", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "source", "description": null, - "name": "with_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "state", "description": null, - "name": "quick_search", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "study_completion_date", "description": null, - "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -150836,12 +22464,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "study_design_allocation", "description": null, - "name": "disease_type", "type": { "kind": "LIST", "name": null, @@ -150850,12 +22478,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "study_design_intervention_model", "description": null, - "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -150864,12 +22492,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "study_design_masking", "description": null, - "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -150878,12 +22506,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "study_design_primary_purpose", "description": null, - "name": "ids", "type": { "kind": "LIST", "name": null, @@ -150892,12 +22520,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "study_phase", "description": null, - "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -150906,12 +22534,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "study_start_date", "description": null, - "name": "state", "type": { "kind": "LIST", "name": null, @@ -150920,22 +22548,26 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "subject", "description": null, - "name": "updated_after", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "submitted_date", "description": null, - "name": "primary_site", "type": { "kind": "LIST", "name": null, @@ -150944,93 +22576,105 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "title", "description": null, - "name": "created_after", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_datetime", "description": null, - "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "us_product", "description": null, - "name": "order_by_desc", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "verification_date", "description": null, - "name": "first", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "not", "description": null, - "name": "with_links_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_core_metadata_collection", "ofType": null } - } + }, + "defaultValue": null } ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_case_count", "type": { "kind": "SCALAR", "name": "Int", "ofType": null - } + }, + "isDeprecated": false, + "deprecationReason": null }, { + "name": "_clinical_trial_files_count", + "description": null, "args": [ { - "defaultValue": null, + "name": "id", "description": null, - "name": "order_by_asc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "submitter_id", "description": null, - "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -151039,88 +22683,116 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "ids", "description": null, - "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "quick_search", "description": null, - "name": "data_format", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "first", "description": null, - "name": "file_size", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "offset", "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { "name": "created_before", + "description": null, "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_after", "description": null, - "name": "id", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_before", "description": null, - "name": "with_path_to", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by_asc", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by_desc", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "with_links", "description": null, - "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -151129,12 +22801,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_links_any", "description": null, - "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -151143,12 +22815,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_links", "description": null, - "name": "error_type", "type": { "kind": "LIST", "name": null, @@ -151157,50 +22829,54 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to", "description": null, - "name": "object_id", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to_any", "description": null, - "name": "state", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_path_to", "description": null, - "name": "created_after", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "accepts_healthy_volunteers", "description": null, - "name": "file_name", "type": { "kind": "LIST", "name": null, @@ -151209,22 +22885,12 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "actual_enrollment", "description": null, - "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -151233,12 +22899,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "arm", "description": null, - "name": "file_state", "type": { "kind": "LIST", "name": null, @@ -151247,12 +22913,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "arm_description", "description": null, - "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -151261,12 +22927,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "arm_name", "description": null, - "name": "data_type", "type": { "kind": "LIST", "name": null, @@ -151275,36 +22941,26 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "arm_type", "description": null, - "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "brief_summary", "description": null, - "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -151313,36 +22969,26 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "brief_title", "description": null, - "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_submitted_aligned_reads", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "category", "description": null, - "name": "submitter_id", "type": { "kind": "LIST", "name": null, @@ -151351,12 +22997,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "clinical_trial_website", "description": null, - "name": "state_comment", "type": { "kind": "LIST", "name": null, @@ -151365,22 +23011,12 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "collaborators", "description": null, - "name": "md5sum", "type": { "kind": "LIST", "name": null, @@ -151389,12 +23025,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "condition", "description": null, - "name": "ids", "type": { "kind": "LIST", "name": null, @@ -151403,22 +23039,12 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "contact", "description": null, - "name": "data_category", "type": { "kind": "LIST", "name": null, @@ -151427,12 +23053,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "contributor", "description": null, - "name": "experimental_strategy", "type": { "kind": "LIST", "name": null, @@ -151441,49 +23067,12 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "submitted_aligned_reads", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "submitted_aligned_reads", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "coverage", "description": null, - "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -151492,26 +23081,26 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_datetime", "description": null, - "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "creator", "description": null, - "name": "data_format", "type": { "kind": "LIST", "name": null, @@ -151520,60 +23109,68 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_availability_date", "description": null, - "name": "file_size", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_available", "description": null, - "name": "created_before", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_available_for_request", "description": null, - "name": "id", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_category", "description": null, - "name": "with_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_format", "description": null, - "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -151582,12 +23179,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_type", "description": null, - "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -151596,12 +23193,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "description", "description": null, - "name": "error_type", "type": { "kind": "LIST", "name": null, @@ -151610,12 +23207,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "eligibility_criteria", "description": null, - "name": "object_id", "type": { "kind": "LIST", "name": null, @@ -151624,12 +23221,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "enrollment", "description": null, - "name": "state", "type": { "kind": "LIST", "name": null, @@ -151638,22 +23235,12 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "fda_regulated_device_product", "description": null, - "name": "file_name", "type": { "kind": "LIST", "name": null, @@ -151662,22 +23249,12 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "fda_regulated_drug_product", "description": null, - "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -151686,12 +23263,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "first_posted_date", "description": null, - "name": "file_state", "type": { "kind": "LIST", "name": null, @@ -151700,12 +23277,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "focus", "description": null, - "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -151714,12 +23291,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "has_data_monitoring_committee", "description": null, - "name": "data_type", "type": { "kind": "LIST", "name": null, @@ -151728,36 +23305,26 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "intervention_type", "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "ipd_sharing_statement", "description": null, - "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -151766,36 +23333,26 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "language", "description": null, - "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_submitted_aligned_reads", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "last_update_posted_date", "description": null, - "name": "submitter_id", "type": { "kind": "LIST", "name": null, @@ -151804,12 +23361,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "location", "description": null, - "name": "state_comment", "type": { "kind": "LIST", "name": null, @@ -151818,22 +23375,12 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "locations_removed", "description": null, - "name": "md5sum", "type": { "kind": "LIST", "name": null, @@ -151842,12 +23389,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "nct_number", "description": null, - "name": "ids", "type": { "kind": "LIST", "name": null, @@ -151856,22 +23403,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "original_estimated_enrollment", "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_category", "type": { "kind": "LIST", "name": null, @@ -151880,12 +23417,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "primary_completion_date", "description": null, - "name": "experimental_strategy", "type": { "kind": "LIST", "name": null, @@ -151894,35 +23431,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_submitted_aligned_reads_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, + "name": "principle_investigator", "description": null, - "name": "code", "type": { "kind": "LIST", "name": null, @@ -151931,50 +23445,40 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "project_id", "description": null, - "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "prs_account", "description": null, - "name": "releasable", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "publications", "description": null, - "name": "availability_mechanism", "type": { "kind": "LIST", "name": null, @@ -151983,12 +23487,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "publisher", "description": null, - "name": "dbgap_accession_number", "type": { "kind": "LIST", "name": null, @@ -151997,46 +23501,54 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "recruitment_status", "description": null, - "name": "created_before", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "responsible_party", "description": null, - "name": "id", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "rights", "description": null, - "name": "with_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "secondary_id", "description": null, - "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -152045,12 +23557,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "source", "description": null, - "name": "investigator_affiliation", "type": { "kind": "LIST", "name": null, @@ -152059,12 +23571,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "state", "description": null, - "name": "support_source", "type": { "kind": "LIST", "name": null, @@ -152073,12 +23585,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "study_completion_date", "description": null, - "name": "state", "type": { "kind": "LIST", "name": null, @@ -152087,32 +23599,40 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "study_design_allocation", "description": null, - "name": "created_after", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "study_design_intervention_model", "description": null, - "name": "order_by_desc", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "study_design_masking", "description": null, - "name": "investigator_name", "type": { "kind": "LIST", "name": null, @@ -152121,12 +23641,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "study_design_primary_purpose", "description": null, - "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -152135,12 +23655,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "study_phase", "description": null, - "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -152149,12 +23669,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "study_start_date", "description": null, - "name": "date_collected", "type": { "kind": "LIST", "name": null, @@ -152163,36 +23683,40 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "subject", "description": null, - "name": "updated_before", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "submitted_date", "description": null, - "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "title", "description": null, - "name": "intended_release_date", "type": { "kind": "LIST", "name": null, @@ -152201,12 +23725,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_datetime", "description": null, - "name": "support_id", "type": { "kind": "LIST", "name": null, @@ -152215,12 +23739,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "us_product", "description": null, - "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -152229,74 +23753,137 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "verification_date", "description": null, - "name": "released", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "not", "description": null, - "name": "availability_type", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_core_metadata_collection", "ofType": null } - } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_transaction_logs_count", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "type", "description": null, - "name": "offset", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "quick_search", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "project_id", "description": null, - "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_project", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "project", "description": null, - "name": "quick_search", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "program", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by_asc", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by_desc", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "related_cases", "description": null, - "name": "name", "type": { "kind": "LIST", "name": null, @@ -152305,12 +23892,42 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "entities", "description": null, - "name": "ids", "type": { "kind": "LIST", "name": null, @@ -152319,49 +23936,105 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "is_dry_run", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "closed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "committable", + "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "state", "description": null, - "name": "updated_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "committed_by", "description": null, - "name": "first", "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null - } + }, + "defaultValue": null } ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "project", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "project", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null }, { + "name": "_transaction_logs", + "description": null, "args": [ { - "defaultValue": null, + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "quick_search", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "project_id", "description": null, - "name": "code", "type": { "kind": "LIST", "name": null, @@ -152370,50 +24043,96 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null + }, + { + "name": "project", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "program", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { "name": "order_by_asc", + "description": null, "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_desc", "description": null, - "name": "with_path_to_any", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "related_cases", "description": null, - "name": "releasable", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "entities", "description": null, - "name": "availability_mechanism", "type": { "kind": "LIST", "name": null, @@ -152422,60 +24141,99 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null + }, + { + "name": "is_dry_run", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "closed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, - "description": null, - "name": "dbgap_accession_number", + "name": "committable", + "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "state", "description": null, - "name": "created_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "committed_by", "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TransactionLog", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_links", + "description": null, + "args": [ + { "name": "id", + "description": null, "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "submitter_id", "description": null, - "name": "with_path_to", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "ids", "description": null, - "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -152484,168 +24242,370 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "quick_search", "description": null, - "name": "investigator_affiliation", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "first", "description": null, - "name": "support_source", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "10" }, { - "defaultValue": null, + "name": "offset", "description": null, - "name": "state", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_before", "description": null, - "name": "created_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_after", "description": null, - "name": "order_by_desc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_before", "description": null, - "name": "investigator_name", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_after", "description": null, - "name": "project_id", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_asc", "description": null, - "name": "with_links_any", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_desc", "description": null, - "name": "date_collected", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "project_id", "description": null, - "name": "updated_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "category", "description": null, - "name": "without_path_to", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "open_access_doc", + "description": null, + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "submitter_id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "project_id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_datetime", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_datetime", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "data_category", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "data_format", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "data_type", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "doc_url", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "error_type", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "file_name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "file_size", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "file_state", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "md5sum", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "object_id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "state", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "core_metadata_collections", + "description": null, + "args": [ { - "defaultValue": null, + "name": "id", "description": null, - "name": "intended_release_date", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "submitter_id", "description": null, - "name": "support_id", "type": { "kind": "LIST", "name": null, @@ -152654,12 +24614,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "ids", "description": null, - "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -152668,135 +24628,102 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "quick_search", "description": null, - "name": "released", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "first", "description": null, - "name": "availability_type", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, - "description": null, "name": "offset", + "description": null, "type": { "kind": "SCALAR", "name": "Int", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_before", "description": null, - "name": "not", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_project", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_after", "description": null, - "name": "quick_search", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_before", "description": null, - "name": "name", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_after", "description": null, - "name": "ids", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_asc", "description": null, - "name": "updated_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_desc", "description": null, - "name": "first", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_project_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ + }, + "defaultValue": null + }, { - "defaultValue": null, + "name": "with_links", "description": null, - "name": "race", "type": { "kind": "LIST", "name": null, @@ -152805,32 +24732,40 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_links_any", "description": null, - "name": "order_by_asc", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_links", "description": null, - "name": "updated_before", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to", "description": null, - "name": "without_path_to", "type": { "kind": "LIST", "name": null, @@ -152839,136 +24774,138 @@ "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to_any", "description": null, - "name": "submitter_id", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_path_to", "description": null, - "name": "with_links", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "accepts_healthy_volunteers", "description": null, - "name": "year_of_birth", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "actual_enrollment", "description": null, - "name": "year_of_death", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "arm", "description": null, - "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_demographic", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "arm_description", "description": null, - "name": "created_before", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "arm_name", "description": null, - "name": "id", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "arm_type", "description": null, - "name": "with_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "brief_summary", "description": null, - "name": "quick_search", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "brief_title", "description": null, - "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -152977,12 +24914,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "category", "description": null, - "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -152991,12 +24928,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "clinical_trial_website", "description": null, - "name": "gender", "type": { "kind": "LIST", "name": null, @@ -153005,12 +24942,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "collaborators", "description": null, - "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -153019,12 +24956,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "condition", "description": null, - "name": "ids", "type": { "kind": "LIST", "name": null, @@ -153033,12 +24970,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "contact", "description": null, - "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -153047,12 +24984,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "contributor", "description": null, - "name": "state", "type": { "kind": "LIST", "name": null, @@ -153061,22 +24998,26 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "coverage", "description": null, - "name": "updated_after", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_datetime", "description": null, - "name": "ethnicity", "type": { "kind": "LIST", "name": null, @@ -153085,56 +25026,68 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "creator", "description": null, - "name": "created_after", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_availability_date", "description": null, - "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_available", "description": null, - "name": "order_by_desc", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_available_for_request", "description": null, - "name": "first", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_category", "description": null, - "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -153143,29 +25096,12 @@ "name": "String", "ofType": null } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "demographic", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "demographic", - "ofType": null - } - } - }, - { - "args": [ + }, + "defaultValue": null + }, { - "defaultValue": null, + "name": "data_format", "description": null, - "name": "race", "type": { "kind": "LIST", "name": null, @@ -153174,46 +25110,26 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_type", "description": null, - "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "description", "description": null, - "name": "submitter_id", "type": { "kind": "LIST", "name": null, @@ -153222,12 +25138,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "eligibility_criteria", "description": null, - "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -153236,108 +25152,124 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "enrollment", "description": null, - "name": "year_of_birth", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "fda_regulated_device_product", "description": null, - "name": "year_of_death", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "fda_regulated_drug_product", "description": null, - "name": "offset", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "first_posted_date", "description": null, - "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_demographic", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "focus", "description": null, - "name": "created_before", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "has_data_monitoring_committee", "description": null, - "name": "id", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "intervention_type", "description": null, - "name": "with_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "ipd_sharing_statement", "description": null, - "name": "quick_search", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "language", "description": null, - "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -153346,12 +25278,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "last_update_posted_date", "description": null, - "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -153360,12 +25292,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "location", "description": null, - "name": "gender", "type": { "kind": "LIST", "name": null, @@ -153374,12 +25306,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "locations_removed", "description": null, - "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -153388,12 +25320,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "nct_number", "description": null, - "name": "ids", "type": { "kind": "LIST", "name": null, @@ -153402,12 +25334,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "original_estimated_enrollment", "description": null, - "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -153416,12 +25348,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "primary_completion_date", "description": null, - "name": "state", "type": { "kind": "LIST", "name": null, @@ -153430,22 +25362,26 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "principle_investigator", "description": null, - "name": "updated_after", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "project_id", "description": null, - "name": "ethnicity", "type": { "kind": "LIST", "name": null, @@ -153454,56 +25390,68 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "prs_account", "description": null, - "name": "created_after", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "publications", "description": null, - "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "publisher", "description": null, - "name": "order_by_desc", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "recruitment_status", "description": null, - "name": "first", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "responsible_party", "description": null, - "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -153512,59 +25460,40 @@ "name": "String", "ofType": null } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_demographic_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "rights", "description": null, - "name": "updated_before", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "secondary_id", "description": null, - "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "source", "description": null, - "name": "analyte_type", "type": { "kind": "LIST", "name": null, @@ -153573,12 +25502,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "state", "description": null, - "name": "submitter_id", "type": { "kind": "LIST", "name": null, @@ -153587,12 +25516,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "study_completion_date", "description": null, - "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -153601,12 +25530,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "study_design_allocation", "description": null, - "name": "state", "type": { "kind": "LIST", "name": null, @@ -153615,94 +25544,110 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "study_design_intervention_model", "description": null, - "name": "offset", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "study_design_masking", "description": null, - "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_aliquot", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "study_design_primary_purpose", "description": null, - "name": "concentration", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "study_phase", "description": null, - "name": "created_before", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "study_start_date", "description": null, - "name": "id", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "subject", "description": null, - "name": "with_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "submitted_date", "description": null, - "name": "quick_search", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "title", "description": null, - "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -153711,40 +25656,40 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_datetime", "description": null, - "name": "aliquot_volume", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "us_product", "description": null, - "name": "aliquot_quantity", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "verification_date", "description": null, - "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -153753,26 +25698,53 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "not", "description": null, - "name": "analyte_type_id", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_core_metadata_collection", "ofType": null } - } + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "core_metadata_collection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_core_metadata_collections_count", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "submitter_id", "description": null, - "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -153781,12 +25753,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, - "description": null, "name": "ids", + "description": null, "type": { "kind": "LIST", "name": null, @@ -153795,94 +25767,102 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null + }, + { + "name": "quick_search", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "offset", "description": null, - "name": "project_id", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_before", "description": null, - "name": "amount", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_after", "description": null, - "name": "updated_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_before", "description": null, - "name": "created_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_after", "description": null, - "name": "with_path_to_any", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_asc", "description": null, - "name": "order_by_desc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_desc", "description": null, - "name": "first", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_links", "description": null, - "name": "source_center", "type": { "kind": "LIST", "name": null, @@ -153891,12 +25871,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, - "description": null, "name": "with_links_any", + "description": null, "type": { "kind": "LIST", "name": null, @@ -153905,49 +25885,40 @@ "name": "String", "ofType": null } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "aliquot", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "aliquot", - "ofType": null - } - } - }, - { - "args": [ + }, + "defaultValue": null + }, { - "defaultValue": null, + "name": "without_links", "description": null, - "name": "order_by_asc", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to", "description": null, - "name": "updated_before", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to_any", "description": null, - "name": "without_path_to", "type": { "kind": "LIST", "name": null, @@ -153956,26 +25927,26 @@ "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_path_to", "description": null, - "name": "analyte_type", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_datetime", "description": null, - "name": "submitter_id", "type": { "kind": "LIST", "name": null, @@ -153984,12 +25955,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_category", "description": null, - "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -153998,12 +25969,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_format", "description": null, - "name": "state", "type": { "kind": "LIST", "name": null, @@ -154012,94 +25983,54 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_type", "description": null, - "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_aliquot", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "doc_url", "description": null, - "name": "concentration", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, + "name": "error_type", "description": null, - "name": "with_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, + "name": "file_name", "description": null, - "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -154108,12 +26039,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "file_size", "description": null, - "name": "aliquot_volume", "type": { "kind": "LIST", "name": null, @@ -154122,26 +26053,26 @@ "name": "Float", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "file_state", "description": null, - "name": "aliquot_quantity", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "md5sum", "description": null, - "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -154150,12 +26081,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "object_id", "description": null, - "name": "analyte_type_id", "type": { "kind": "LIST", "name": null, @@ -154164,12 +26095,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "project_id", "description": null, - "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -154178,12 +26109,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "state", "description": null, - "name": "ids", "type": { "kind": "LIST", "name": null, @@ -154192,12 +26123,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_datetime", "description": null, - "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -154206,121 +26137,123 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "not", "description": null, - "name": "amount", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_open_access_doc", "ofType": null } - } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_transaction_logs_count", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "type", "description": null, - "name": "updated_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "quick_search", "description": null, - "name": "created_after", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "project_id", "description": null, - "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "project", "description": null, - "name": "order_by_desc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "program", "description": null, - "name": "first", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_asc", "description": null, - "name": "source_center", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_desc", "description": null, - "name": "with_links_any", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_aliquot_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, { - "defaultValue": null, + "name": "related_cases", "description": null, - "name": "error_type", "type": { "kind": "LIST", "name": null, @@ -154329,50 +26262,42 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "first", "description": null, - "name": "order_by_asc", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "last", "description": null, - "name": "updated_datetime", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "offset", "description": null, - "name": "with_path_to_any", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "entities", "description": null, - "name": "data_format", "type": { "kind": "LIST", "name": null, @@ -154381,74 +26306,105 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "is_dry_run", "description": null, - "name": "file_size", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "closed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "committable", + "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "state", "description": null, - "name": "created_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "committed_by", "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_transaction_logs", + "description": null, + "args": [ + { "name": "id", + "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "type", "description": null, - "name": "with_path_to", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "quick_search", "description": null, - "name": "without_links", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "project_id", "description": null, - "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -154457,64 +26413,52 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "project", "description": null, - "name": "assay_instrument_model", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "program", "description": null, - "name": "object_id", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_asc", "description": null, - "name": "state", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_desc", "description": null, - "name": "created_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "related_cases", "description": null, - "name": "file_name", "type": { "kind": "LIST", "name": null, @@ -154523,50 +26467,42 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "first", "description": null, - "name": "order_by_desc", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "last", "description": null, - "name": "project_id", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "offset", "description": null, - "name": "file_state", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "entities", "description": null, - "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -154575,64 +26511,99 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "is_dry_run", "description": null, - "name": "assay_method", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "closed", "description": null, - "name": "data_type", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "committable", + "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "state", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "committed_by", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TransactionLog", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_links", + "description": null, + "args": [ + { + "name": "id", "description": null, - "name": "updated_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "submitter_id", "description": null, - "name": "without_path_to", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "ids", "description": null, - "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -154641,281 +26612,1198 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "quick_search", "description": null, - "name": "offset", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "first", "description": null, - "name": "not", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_submitted_methylation", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "10" }, { - "defaultValue": null, + "name": "offset", "description": null, - "name": "submitter_id", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_before", "description": null, - "name": "state_comment", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_after", "description": null, - "name": "quick_search", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_before", "description": null, - "name": "md5sum", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_after", "description": null, - "name": "ids", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_asc", "description": null, - "name": "updated_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_desc", "description": null, - "name": "data_category", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "project_id", "description": null, - "name": "assay_instrument", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "category", "description": null, - "name": "first", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - } + }, + "defaultValue": null } ], - "deprecationReason": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_core_metadata_collection", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "accepts_healthy_volunteers", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "actual_enrollment", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "arm", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "arm_description", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "arm_name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "arm_type", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "brief_summary", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "brief_title", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "category", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "clinical_trial_website", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "collaborators", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "condition", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "contact", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "contributor", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "coverage", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "created_datetime", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "creator", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "data_availability_date", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "data_available", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "data_available_for_request", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "data_category", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "data_format", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "data_type", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "description", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "eligibility_criteria", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "enrollment", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "fda_regulated_device_product", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "fda_regulated_drug_product", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first_posted_date", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "focus", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "has_data_monitoring_committee", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "intervention_type", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "ipd_sharing_statement", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "language", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last_update_posted_date", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "location", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "locations_removed", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "nct_number", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "original_estimated_enrollment", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "primary_completion_date", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "principle_investigator", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "project_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "prs_account", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "publications", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "publisher", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "recruitment_status", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "responsible_party", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "rights", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "secondary_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "source", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "state", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "study_completion_date", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "study_design_allocation", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "study_design_intervention_model", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "study_design_masking", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "study_design_primary_purpose", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "study_phase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "study_start_date", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subject", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "submitted_date", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "submitter_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "title", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updated_datetime", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "us_product", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "verification_date", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_open_access_doc", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "created_datetime", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "data_category", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "data_format", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "data_type", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "doc_url", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "error_type", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "file_name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "file_size", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "file_state", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "md5sum", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "object_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "project_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "state", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "submitter_id", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updated_datetime", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "clinical_trial_file", + "description": null, + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, "isDeprecated": false, - "name": "submitted_methylation", + "deprecationReason": null + }, + { + "name": "submitter_id", + "description": null, + "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "submitted_methylation", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "error_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_format", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_size", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "project_id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_datetime", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_datetime", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "data_category", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "data_format", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "data_type", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "error_type", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "file_name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "file_size", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "file_state", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "md5sum", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "object_id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "state", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "core_metadata_collections", + "description": null, + "args": [ { - "defaultValue": null, - "description": null, "name": "id", + "description": null, "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "submitter_id", "description": null, - "name": "with_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "ids", "description": null, - "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -154924,130 +27812,102 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "quick_search", "description": null, - "name": "created_datetime", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "first", "description": null, - "name": "assay_instrument_model", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "offset", "description": null, - "name": "object_id", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_before", "description": null, - "name": "state", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, - "description": null, "name": "created_after", + "description": null, "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_before", "description": null, - "name": "file_name", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_after", "description": null, - "name": "order_by_desc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_asc", "description": null, - "name": "project_id", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_desc", "description": null, - "name": "file_state", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_links", "description": null, - "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -155056,12 +27916,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_links_any", "description": null, - "name": "assay_method", "type": { "kind": "LIST", "name": null, @@ -155070,12 +27930,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_links", "description": null, - "name": "data_type", "type": { "kind": "LIST", "name": null, @@ -155084,22 +27944,12 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to", "description": null, - "name": "without_path_to", "type": { "kind": "LIST", "name": null, @@ -155108,50 +27958,40 @@ "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to_any", "description": null, - "name": "with_links", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_path_to", "description": null, - "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_submitted_methylation", + "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "accepts_healthy_volunteers", "description": null, - "name": "submitter_id", "type": { "kind": "LIST", "name": null, @@ -155160,12 +28000,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "actual_enrollment", "description": null, - "name": "state_comment", "type": { "kind": "LIST", "name": null, @@ -155174,22 +28014,12 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "arm", "description": null, - "name": "md5sum", "type": { "kind": "LIST", "name": null, @@ -155198,12 +28028,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "arm_description", "description": null, - "name": "ids", "type": { "kind": "LIST", "name": null, @@ -155212,22 +28042,12 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "arm_name", "description": null, - "name": "data_category", "type": { "kind": "LIST", "name": null, @@ -155236,12 +28056,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "arm_type", "description": null, - "name": "assay_instrument", "type": { "kind": "LIST", "name": null, @@ -155250,35 +28070,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "brief_summary", "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_submitted_methylation_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "her2_erbb2_result_ihc", "type": { "kind": "LIST", "name": null, @@ -155287,22 +28084,12 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "brief_title", "description": null, - "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -155311,40 +28098,26 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "category", "description": null, - "name": "ldh_level_at_diagnosis", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "clinical_trial_website", "description": null, - "name": "submitter_id", "type": { "kind": "LIST", "name": null, @@ -155353,12 +28126,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "collaborators", "description": null, - "name": "biomarker_result", "type": { "kind": "LIST", "name": null, @@ -155367,74 +28140,40 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "condition", "description": null, - "name": "fev1_fvc_pre_bronch_percent", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "contact", "description": null, - "name": "fev1_ref_post_bronch_percent", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "contributor", "description": null, - "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -155443,26 +28182,26 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "coverage", "description": null, - "name": "dlco_ref_predictive_percent", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_datetime", "description": null, - "name": "her2_erbb2_percent_positive_ihc", "type": { "kind": "LIST", "name": null, @@ -155471,12 +28210,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "creator", "description": null, - "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -155485,12 +28224,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_availability_date", "description": null, - "name": "biomarker_name", "type": { "kind": "LIST", "name": null, @@ -155499,12 +28238,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_available", "description": null, - "name": "state", "type": { "kind": "LIST", "name": null, @@ -155513,46 +28252,26 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_available_for_request", "description": null, - "name": "fev1_fvc_post_bronch_percent", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "Boolean", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_category", "description": null, - "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -155561,12 +28280,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_format", "description": null, - "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -155575,36 +28294,26 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_type", "description": null, - "name": "cea_level_preoperative", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "description", "description": null, - "name": "biomarker_test_method", "type": { "kind": "LIST", "name": null, @@ -155613,26 +28322,12 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "eligibility_criteria", "description": null, - "name": "progesterone_receptor_result_ihc", "type": { "kind": "LIST", "name": null, @@ -155641,12 +28336,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "enrollment", "description": null, - "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -155655,36 +28350,26 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "fda_regulated_device_product", "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_clinical_test", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "fda_regulated_drug_product", "description": null, - "name": "estrogen_receptor_percent_positive_ihc", "type": { "kind": "LIST", "name": null, @@ -155693,36 +28378,26 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "first_posted_date", "description": null, - "name": "ldh_normal_range_upper", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "focus", "description": null, - "name": "estrogen_receptor_result_ihc", "type": { "kind": "LIST", "name": null, @@ -155731,26 +28406,26 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "has_data_monitoring_committee", "description": null, - "name": "fev1_ref_pre_bronch_percent", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "intervention_type", "description": null, - "name": "ids", "type": { "kind": "LIST", "name": null, @@ -155759,12 +28434,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "ipd_sharing_statement", "description": null, - "name": "her2_erbb2_result_fish", "type": { "kind": "LIST", "name": null, @@ -155773,22 +28448,12 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "language", "description": null, - "name": "microsatellite_instability_abnormal", "type": { "kind": "LIST", "name": null, @@ -155797,12 +28462,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "last_update_posted_date", "description": null, - "name": "progesterone_receptor_percent_positive_ihc", "type": { "kind": "LIST", "name": null, @@ -155811,39 +28476,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "clinical_test", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "clinical_test", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, + "name": "location", "description": null, - "name": "her2_erbb2_result_ihc", "type": { "kind": "LIST", "name": null, @@ -155852,22 +28490,12 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "locations_removed", "description": null, - "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -155876,40 +28504,40 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "nct_number", "description": null, - "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "original_estimated_enrollment", "description": null, - "name": "ldh_level_at_diagnosis", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "primary_completion_date", "description": null, - "name": "submitter_id", "type": { "kind": "LIST", "name": null, @@ -155918,12 +28546,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "principle_investigator", "description": null, - "name": "biomarker_result", "type": { "kind": "LIST", "name": null, @@ -155932,74 +28560,54 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "project_id", "description": null, - "name": "fev1_fvc_pre_bronch_percent", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "prs_account", "description": null, - "name": "fev1_ref_post_bronch_percent", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "publications", "description": null, - "name": "with_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "publisher", "description": null, - "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -156008,26 +28616,26 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "recruitment_status", "description": null, - "name": "dlco_ref_predictive_percent", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "responsible_party", "description": null, - "name": "her2_erbb2_percent_positive_ihc", "type": { "kind": "LIST", "name": null, @@ -156036,12 +28644,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "rights", "description": null, - "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -156050,12 +28658,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "secondary_id", "description": null, - "name": "biomarker_name", "type": { "kind": "LIST", "name": null, @@ -156064,12 +28672,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "source", "description": null, - "name": "state", "type": { "kind": "LIST", "name": null, @@ -156078,46 +28686,26 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "state", "description": null, - "name": "fev1_fvc_post_bronch_percent", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "study_completion_date", "description": null, - "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -156126,12 +28714,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "study_design_allocation", "description": null, - "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -156140,36 +28728,26 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "study_design_intervention_model", "description": null, - "name": "cea_level_preoperative", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "study_design_masking", "description": null, - "name": "biomarker_test_method", "type": { "kind": "LIST", "name": null, @@ -156178,26 +28756,26 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "study_design_primary_purpose", "description": null, - "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "study_phase", "description": null, - "name": "progesterone_receptor_result_ihc", "type": { "kind": "LIST", "name": null, @@ -156206,12 +28784,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "study_start_date", "description": null, - "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -156220,36 +28798,26 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "subject", "description": null, - "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_clinical_test", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "submitted_date", "description": null, - "name": "estrogen_receptor_percent_positive_ihc", "type": { "kind": "LIST", "name": null, @@ -156258,36 +28826,26 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "title", "description": null, - "name": "ldh_normal_range_upper", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_datetime", "description": null, - "name": "estrogen_receptor_result_ihc", "type": { "kind": "LIST", "name": null, @@ -156296,26 +28854,26 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "us_product", "description": null, - "name": "fev1_ref_pre_bronch_percent", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "verification_date", "description": null, - "name": "ids", "type": { "kind": "LIST", "name": null, @@ -156324,36 +28882,53 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "not", "description": null, - "name": "her2_erbb2_result_fish", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_core_metadata_collection", "ofType": null } - } - }, + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "core_metadata_collection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_core_metadata_collections_count", + "description": null, + "args": [ { - "defaultValue": null, + "name": "id", "description": null, - "name": "updated_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "submitter_id", "description": null, - "name": "microsatellite_instability_abnormal", "type": { "kind": "LIST", "name": null, @@ -156362,12 +28937,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "ids", "description": null, - "name": "progesterone_receptor_percent_positive_ihc", "type": { "kind": "LIST", "name": null, @@ -156376,101 +28951,102 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "quick_search", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { "name": "first", + "description": null, "type": { "kind": "SCALAR", "name": "Int", "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_clinical_test_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ + }, + "defaultValue": null + }, { - "defaultValue": null, + "name": "offset", "description": null, - "name": "type_of_sample", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_before", "description": null, - "name": "order_by_asc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null + }, + { + "name": "created_after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_before", "description": null, - "name": "updated_datetime", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_after", "description": null, - "name": "with_path_to_any", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_asc", "description": null, - "name": "somatic_mutations_identified", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by_desc", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_links", "description": null, - "name": "marker_panel_description", "type": { "kind": "LIST", "name": null, @@ -156479,12 +29055,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_links_any", "description": null, - "name": "submitter_id", "type": { "kind": "LIST", "name": null, @@ -156493,12 +29069,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_links", "description": null, - "name": "experimental_intent", "type": { "kind": "LIST", "name": null, @@ -156507,60 +29083,40 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to", "description": null, - "name": "type_of_specimen", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to_any", "description": null, - "name": "type_of_data", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_path_to", "description": null, - "name": "with_path_to", "type": { "kind": "LIST", "name": null, @@ -156569,12 +29125,12 @@ "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_datetime", "description": null, - "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -156583,12 +29139,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_category", "description": null, - "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -156597,12 +29153,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_format", "description": null, - "name": "state", "type": { "kind": "LIST", "name": null, @@ -156611,32 +29167,12 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_type", "description": null, - "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -156645,12 +29181,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "error_type", "description": null, - "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -156659,12 +29195,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "file_name", "description": null, - "name": "associated_experiment", "type": { "kind": "LIST", "name": null, @@ -156673,36 +29209,40 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "file_size", "description": null, - "name": "updated_before", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "file_state", "description": null, - "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "md5sum", "description": null, - "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -156711,88 +29251,125 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "object_id", "description": null, - "name": "copy_numbers_identified", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "project_id", "description": null, - "name": "offset", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "state", "description": null, - "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_experiment", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_datetime", "description": null, - "name": "number_samples_per_experimental_group", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "not", "description": null, - "name": "number_experimental_group", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_clinical_trial_file", "ofType": null } - } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_transaction_logs_count", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "type", "description": null, - "name": "quick_search", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "quick_search", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "project_id", "description": null, - "name": "data_description", "type": { "kind": "LIST", "name": null, @@ -156801,50 +29378,52 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "project", "description": null, - "name": "indels_identified", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "program", "description": null, - "name": "ids", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by_asc", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_desc", "description": null, - "name": "updated_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "related_cases", "description": null, - "name": "experimental_description", "type": { "kind": "LIST", "name": null, @@ -156853,63 +29432,42 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, - "description": null, "name": "first", + "description": null, "type": { "kind": "SCALAR", "name": "Int", "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "experiment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "experiment", - "ofType": null - } - } - }, - { - "args": [ + }, + "defaultValue": null + }, { - "defaultValue": null, + "name": "last", "description": null, - "name": "type_of_sample", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "offset", "description": null, - "name": "order_by_asc", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "entities", "description": null, - "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -156918,96 +29476,105 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "is_dry_run", "description": null, - "name": "with_path_to_any", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "closed", "description": null, - "name": "somatic_mutations_identified", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, - "description": null, - "name": "marker_panel_description", + "name": "committable", + "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "state", "description": null, - "name": "submitter_id", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "committed_by", "description": null, - "name": "experimental_intent", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_transaction_logs", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "type", "description": null, - "name": "type_of_specimen", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "quick_search", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "project_id", "description": null, - "name": "type_of_data", "type": { "kind": "LIST", "name": null, @@ -157016,60 +29583,52 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "project", "description": null, - "name": "created_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "program", "description": null, - "name": "id", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_asc", "description": null, - "name": "with_path_to", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_desc", "description": null, - "name": "without_links", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "related_cases", "description": null, - "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -157078,46 +29637,42 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "first", "description": null, - "name": "state", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "last", "description": null, - "name": "created_after", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "offset", "description": null, - "name": "order_by_desc", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "entities", "description": null, - "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -157126,281 +29681,707 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "is_dry_run", "description": null, - "name": "with_links_any", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "closed", "description": null, - "name": "associated_experiment", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "committable", + "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "state", "description": null, - "name": "updated_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "committed_by", "description": null, - "name": "without_path_to", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TransactionLog", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_links", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "submitter_id", "description": null, - "name": "with_links", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "ids", "description": null, - "name": "copy_numbers_identified", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "quick_search", "description": null, - "name": "offset", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "first", "description": null, - "name": "not", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_experiment", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "10" }, { - "defaultValue": null, + "name": "offset", "description": null, - "name": "number_samples_per_experimental_group", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_before", "description": null, - "name": "number_experimental_group", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_after", "description": null, - "name": "quick_search", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_before", "description": null, - "name": "data_description", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_after", "description": null, - "name": "indels_identified", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_asc", "description": null, - "name": "ids", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_desc", "description": null, - "name": "updated_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "project_id", "description": null, - "name": "experimental_description", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "category", "description": null, - "name": "first", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - } + }, + "defaultValue": null } ], - "deprecationReason": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "DataNode", + "description": null, + "fields": [ + { + "name": "created_datetime", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "data_category", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "data_format", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "data_type", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "error_type", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "file_name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "file_size", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "file_state", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "md5sum", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "object_id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "project_id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "state", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "submitter_id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_datetime", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "NodeType", + "description": null, + "fields": [ + { + "name": "title", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "constraints", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "systemProperties", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "project", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "required", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "program", "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, "isDeprecated": false, - "name": "_experiment_count", + "deprecationReason": null + }, + { + "name": "submittable", + "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "validators", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "namespace", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "uniqueKeys", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "root", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "links", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "category", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "additionalProperties", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null - } + }, + "isDeprecated": false, + "deprecationReason": null }, { + "name": "properties", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "viewer", + "description": null, + "fields": [ + { + "name": "node", + "description": null, "args": [ { - "defaultValue": null, + "name": "id", "description": null, - "name": "order_by_asc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "submitter_id", "description": null, - "name": "with_path_to_any", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "ids", "description": null, - "name": "data_format", "type": { "kind": "LIST", "name": null, @@ -157409,358 +30390,102 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_size", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "quick_search", "description": null, - "name": "created_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "first", "description": null, - "name": "id", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "error_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "object_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + }, + "defaultValue": "10" }, { - "defaultValue": null, + "name": "offset", "description": null, - "name": "state", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_before", "description": null, - "name": "created_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_name", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_after", "description": null, - "name": "order_by_desc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "project_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_state", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_type", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + }, + "defaultValue": null }, { - "defaultValue": null, - "description": null, "name": "updated_before", + "description": null, "type": { "kind": "SCALAR", "name": "String", "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_links", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_after", "description": null, - "name": "offset", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_submitted_unaligned_reads", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "submitter_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "state_comment", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_asc", "description": null, - "name": "quick_search", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "md5sum", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "ids", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_desc", "description": null, - "name": "updated_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "of_type", "description": null, - "name": "data_category", "type": { "kind": "LIST", "name": null, @@ -157769,257 +30494,173 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "project_id", "description": null, - "name": "experimental_strategy", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "category", "description": null, - "name": "first", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - } + }, + "defaultValue": null } ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "submitted_unaligned_reads", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "submitted_unaligned_reads", + "kind": "INTERFACE", + "name": "Node", "ofType": null } - } + }, + "isDeprecated": false, + "deprecationReason": null }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_datetime", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "with_path_to_any", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "data_format", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "file_size", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, + "name": "data_release", + "description": null, + "args": [ { - "defaultValue": null, + "name": "id", "description": null, - "name": "created_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "submitter_id", "description": null, - "name": "id", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "ids", "description": null, - "name": "with_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "quick_search", "description": null, - "name": "without_links", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "first", "description": null, - "name": "created_datetime", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "offset", "description": null, - "name": "error_type", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_before", "description": null, - "name": "object_id", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_after", "description": null, - "name": "state", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_before", "description": null, - "name": "created_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_after", "description": null, - "name": "file_name", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_asc", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { "name": "order_by_desc", + "description": null, "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_links", "description": null, - "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -158028,12 +30669,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_links_any", "description": null, - "name": "file_state", "type": { "kind": "LIST", "name": null, @@ -158042,12 +30683,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_links", "description": null, - "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -158056,36 +30697,40 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to", "description": null, - "name": "data_type", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to_any", "description": null, - "name": "updated_before", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, - "description": null, "name": "without_path_to", + "description": null, "type": { "kind": "LIST", "name": null, @@ -158094,12 +30739,12 @@ "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_datetime", "description": null, - "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -158108,36 +30753,40 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "major_version", "description": null, - "name": "offset", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "minor_version", "description": null, - "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_submitted_unaligned_reads", + "kind": "SCALAR", + "name": "Float", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "name", "description": null, - "name": "submitter_id", "type": { "kind": "LIST", "name": null, @@ -158146,12 +30795,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "release_date", "description": null, - "name": "state_comment", "type": { "kind": "LIST", "name": null, @@ -158160,22 +30809,26 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "released", "description": null, - "name": "quick_search", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_datetime", "description": null, - "name": "md5sum", "type": { "kind": "LIST", "name": null, @@ -158184,50 +30837,63 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "not", "description": null, - "name": "ids", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_data_release", "ofType": null } - } - }, + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "data_release", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_data_release_count", + "description": null, + "args": [ { - "defaultValue": null, + "name": "id", "description": null, - "name": "updated_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "submitter_id", "description": null, - "name": "data_category", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "ids", "description": null, - "name": "experimental_strategy", "type": { "kind": "LIST", "name": null, @@ -158236,101 +30902,102 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "quick_search", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { "name": "first", + "description": null, "type": { "kind": "SCALAR", "name": "Int", "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_submitted_unaligned_reads_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ + }, + "defaultValue": null + }, { - "defaultValue": null, + "name": "offset", "description": null, - "name": "percent_tumor_nuclei", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_before", "description": null, - "name": "order_by_asc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_after", "description": null, - "name": "updated_datetime", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_before", "description": null, - "name": "with_path_to_any", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_after", "description": null, - "name": "submitter_id", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by_asc", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by_desc", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_links", "description": null, - "name": "run_name", "type": { "kind": "LIST", "name": null, @@ -158339,74 +31006,54 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_links_any", "description": null, - "name": "percent_necrosis", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_links", "description": null, - "name": "percent_granulocyte_infiltration", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to", "description": null, - "name": "percent_inflam_infiltration", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to_any", "description": null, - "name": "with_path_to", "type": { "kind": "LIST", "name": null, @@ -158415,26 +31062,26 @@ "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_path_to", "description": null, - "name": "apoptotic_concentration", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_datetime", "description": null, - "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -158443,12 +31090,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "major_version", "description": null, - "name": "percent_normal_cells", "type": { "kind": "LIST", "name": null, @@ -158457,12 +31104,12 @@ "name": "Float", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "minor_version", "description": null, - "name": "ctc_concentration", "type": { "kind": "LIST", "name": null, @@ -158471,12 +31118,12 @@ "name": "Float", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "name", "description": null, - "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -158485,12 +31132,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "release_date", "description": null, - "name": "state", "type": { "kind": "LIST", "name": null, @@ -158499,12 +31146,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "released", "description": null, - "name": "methanol_added", "type": { "kind": "LIST", "name": null, @@ -158513,12 +31160,12 @@ "name": "Boolean", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_datetime", "description": null, - "name": "section_location", "type": { "kind": "LIST", "name": null, @@ -158527,60 +31174,59 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "not", "description": null, - "name": "ctc_low_concentration", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_data_release", "ofType": null } - } - }, + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "root", + "description": null, + "args": [ { - "defaultValue": null, + "name": "id", "description": null, - "name": "order_by_desc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "submitter_id", "description": null, - "name": "number_proliferating_cells", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "ids", "description": null, - "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -158589,120 +31235,102 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "quick_search", "description": null, - "name": "ctc_small_concentration", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "first", "description": null, - "name": "with_links_any", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "offset", "description": null, - "name": "updated_before", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_before", "description": null, - "name": "without_path_to", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_after", "description": null, - "name": "percent_monocyte_infiltration", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_before", "description": null, - "name": "percent_lymphocyte_infiltration", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_after", "description": null, - "name": "percent_neutrophil_infiltration", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_asc", "description": null, - "name": "with_links", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by_desc", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_links", "description": null, - "name": "run_datetime", "type": { "kind": "LIST", "name": null, @@ -158711,102 +31339,82 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_links_any", "description": null, - "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_slide", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_links", "description": null, - "name": "percent_stromal_cells", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to", "description": null, - "name": "number_nucleated_cells", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to_any", "description": null, - "name": "percent_eosinophil_infiltration", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_path_to", "description": null, - "name": "ids", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "schema_version", "description": null, - "name": "slide_identifier", "type": { "kind": "LIST", "name": null, @@ -158815,87 +31423,63 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "not", "description": null, - "name": "percent_tumor_cells", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_root", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + }, + "defaultValue": null } ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "slide", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "OBJECT", - "name": "slide", + "name": "root", "ofType": null } - } + }, + "isDeprecated": false, + "deprecationReason": null }, { + "name": "_root_count", + "description": null, "args": [ { - "defaultValue": null, + "name": "id", "description": null, - "name": "percent_tumor_nuclei", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "submitter_id", "description": null, - "name": "order_by_asc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "ids", "description": null, - "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -158904,144 +31488,116 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "quick_search", "description": null, - "name": "with_path_to_any", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "first", "description": null, - "name": "submitter_id", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "offset", "description": null, - "name": "run_name", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_before", "description": null, - "name": "percent_necrosis", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_after", "description": null, - "name": "percent_granulocyte_infiltration", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_before", "description": null, - "name": "percent_inflam_infiltration", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_after", "description": null, - "name": "created_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_asc", "description": null, - "name": "id", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_desc", "description": null, - "name": "with_path_to", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_links", "description": null, - "name": "apoptotic_concentration", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_links_any", "description": null, - "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -159050,252 +31606,261 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_links", "description": null, - "name": "percent_normal_cells", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to", "description": null, - "name": "ctc_concentration", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to_any", "description": null, - "name": "created_datetime", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_path_to", "description": null, - "name": "state", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "schema_version", "description": null, - "name": "methanol_added", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "not", "description": null, - "name": "section_location", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_root", "ofType": null } - } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "project", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "submitter_id", "description": null, - "name": "created_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "ids", "description": null, - "name": "ctc_low_concentration", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "quick_search", "description": null, - "name": "order_by_desc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "first", "description": null, - "name": "number_proliferating_cells", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "offset", "description": null, - "name": "project_id", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_before", "description": null, - "name": "ctc_small_concentration", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_after", "description": null, - "name": "with_links_any", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, - "description": null, "name": "updated_before", + "description": null, "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_after", "description": null, - "name": "without_path_to", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_asc", "description": null, - "name": "percent_monocyte_infiltration", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by_desc", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_links", "description": null, - "name": "percent_lymphocyte_infiltration", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_links_any", "description": null, - "name": "percent_neutrophil_infiltration", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_links", "description": null, - "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -159304,102 +31869,96 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to", "description": null, - "name": "run_datetime", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to_any", "description": null, - "name": "offset", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_path_to", "description": null, - "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_slide", + "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "administering_ic", "description": null, - "name": "percent_stromal_cells", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "availability_mechanism", "description": null, - "name": "number_nucleated_cells", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "availability_type", "description": null, - "name": "percent_eosinophil_infiltration", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "code", "description": null, - "name": "ids", "type": { "kind": "LIST", "name": null, @@ -159408,12 +31967,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_description", "description": null, - "name": "slide_identifier", "type": { "kind": "LIST", "name": null, @@ -159422,93 +31981,40 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "date_collected", "description": null, - "name": "percent_tumor_cells", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_slide_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "dbgap_accession_number", "description": null, - "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "institution", "description": null, - "name": "submitter_id", "type": { "kind": "LIST", "name": null, @@ -159517,12 +32023,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "intended_release_date", "description": null, - "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -159531,12 +32037,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "investigator", "description": null, - "name": "keyword_name", "type": { "kind": "LIST", "name": null, @@ -159545,80 +32051,54 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "investigator_affiliation", "description": null, - "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_keyword", + "kind": "SCALAR", + "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "investigator_name", "description": null, - "name": "with_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "location", "description": null, - "name": "quick_search", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "name", "description": null, - "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -159627,12 +32107,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "project_title", "description": null, - "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -159641,40 +32121,40 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "releasable", "description": null, - "name": "updated_datetime", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "released", "description": null, - "name": "ids", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "research_focus_area", "description": null, - "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -159683,12 +32163,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "research_program", "description": null, - "name": "state", "type": { "kind": "LIST", "name": null, @@ -159697,131 +32177,133 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "state", "description": null, - "name": "updated_after", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "support_id", "description": null, - "name": "created_after", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "support_source", "description": null, - "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "year_awarded", "description": null, - "name": "order_by_desc", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "project_id", "description": null, - "name": "first", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "not", "description": null, - "name": "with_links_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_project", "ofType": null } - } + }, + "defaultValue": null } ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "keyword", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "OBJECT", - "name": "keyword", + "name": "project", "ofType": null } - } + }, + "isDeprecated": false, + "deprecationReason": null }, { + "name": "_project_count", + "description": null, "args": [ { - "defaultValue": null, + "name": "id", "description": null, - "name": "order_by_asc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "submitter_id", "description": null, - "name": "updated_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "without_path_to", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "ids", "description": null, - "name": "submitter_id", "type": { "kind": "LIST", "name": null, @@ -159830,122 +32312,102 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "quick_search", "description": null, - "name": "with_links", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "first", "description": null, - "name": "keyword_name", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, - "description": null, "name": "offset", + "description": null, "type": { "kind": "SCALAR", "name": "Int", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_before", "description": null, - "name": "not", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_keyword", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_after", "description": null, - "name": "created_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_before", "description": null, - "name": "id", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_after", "description": null, - "name": "with_path_to", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_asc", "description": null, - "name": "quick_search", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_desc", "description": null, - "name": "without_links", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_links", "description": null, - "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -159954,12 +32416,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_links_any", "description": null, - "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -159968,12 +32430,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_links", "description": null, - "name": "ids", "type": { "kind": "LIST", "name": null, @@ -159982,60 +32444,40 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to", "description": null, - "name": "project_id", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to_any", "description": null, - "name": "state", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, + "name": "without_path_to", "description": null, - "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, @@ -160044,32 +32486,12 @@ "name": "WithPathToInput", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "administering_ic", "description": null, - "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -160078,35 +32500,12 @@ "name": "String", "ofType": null } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_keyword_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "availability_mechanism", "description": null, - "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -160115,26 +32514,26 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "availability_type", "description": null, - "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "code", "description": null, - "name": "data_format", "type": { "kind": "LIST", "name": null, @@ -160143,60 +32542,68 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_description", "description": null, - "name": "file_size", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "date_collected", "description": null, - "name": "created_before", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "dbgap_accession_number", "description": null, - "name": "id", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "institution", "description": null, - "name": "with_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "intended_release_date", "description": null, - "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -160205,12 +32612,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "investigator", "description": null, - "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -160219,12 +32626,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "investigator_affiliation", "description": null, - "name": "error_type", "type": { "kind": "LIST", "name": null, @@ -160233,12 +32640,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "investigator_name", "description": null, - "name": "object_id", "type": { "kind": "LIST", "name": null, @@ -160247,12 +32654,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "location", "description": null, - "name": "state", "type": { "kind": "LIST", "name": null, @@ -160261,22 +32668,26 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "name", "description": null, - "name": "created_after", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "project_title", "description": null, - "name": "file_name", "type": { "kind": "LIST", "name": null, @@ -160285,36 +32696,40 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "releasable", "description": null, - "name": "order_by_desc", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "released", "description": null, - "name": "project_id", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "research_focus_area", "description": null, - "name": "file_state", "type": { "kind": "LIST", "name": null, @@ -160323,12 +32738,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "research_program", "description": null, - "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -160337,12 +32752,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "state", "description": null, - "name": "data_type", "type": { "kind": "LIST", "name": null, @@ -160351,36 +32766,26 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "support_id", "description": null, - "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "support_source", "description": null, - "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -160389,36 +32794,26 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "year_awarded", "description": null, - "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_aligned_reads_index", + "kind": "SCALAR", + "name": "Float", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "project_id", "description": null, - "name": "submitter_id", "type": { "kind": "LIST", "name": null, @@ -160427,36 +32822,49 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "not", "description": null, - "name": "state_comment", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_project", "ofType": null } - } - }, + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "open_access_doc", + "description": null, + "args": [ { - "defaultValue": null, + "name": "id", "description": null, - "name": "quick_search", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "submitter_id", "description": null, - "name": "md5sum", "type": { "kind": "LIST", "name": null, @@ -160465,12 +32873,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, - "description": null, "name": "ids", + "description": null, "type": { "kind": "LIST", "name": null, @@ -160479,73 +32887,102 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "quick_search", "description": null, - "name": "updated_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "first", "description": null, - "name": "data_category", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "offset", "description": null, - "name": "first", "type": { "kind": "SCALAR", "name": "Int", "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "aligned_reads_index", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "aligned_reads_index", - "ofType": null - } - } - }, - { - "args": [ + }, + "defaultValue": null + }, + { + "name": "created_before", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "created_after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updated_before", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updated_after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, { - "defaultValue": null, - "description": null, "name": "order_by_asc", + "description": null, "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_desc", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "with_links", "description": null, - "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -160554,26 +32991,26 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_links_any", "description": null, - "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_links", "description": null, - "name": "data_format", "type": { "kind": "LIST", "name": null, @@ -160582,46 +33019,40 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to", "description": null, - "name": "file_size", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to_any", "description": null, - "name": "id", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_path_to", "description": null, - "name": "with_path_to", "type": { "kind": "LIST", "name": null, @@ -160630,12 +33061,12 @@ "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_datetime", "description": null, - "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -160644,12 +33075,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_category", "description": null, - "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -160658,12 +33089,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_format", "description": null, - "name": "error_type", "type": { "kind": "LIST", "name": null, @@ -160672,12 +33103,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_type", "description": null, - "name": "object_id", "type": { "kind": "LIST", "name": null, @@ -160686,12 +33117,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "doc_url", "description": null, - "name": "state", "type": { "kind": "LIST", "name": null, @@ -160700,22 +33131,12 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "error_type", "description": null, - "name": "file_name", "type": { "kind": "LIST", "name": null, @@ -160724,22 +33145,12 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "file_name", "description": null, - "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -160748,26 +33159,26 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "file_size", "description": null, - "name": "file_state", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "file_state", "description": null, - "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -160776,12 +33187,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "md5sum", "description": null, - "name": "data_type", "type": { "kind": "LIST", "name": null, @@ -160790,36 +33201,26 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "object_id", "description": null, - "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "project_id", "description": null, - "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -160828,36 +33229,26 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "state", "description": null, - "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_aligned_reads_index", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_datetime", "description": null, - "name": "submitter_id", "type": { "kind": "LIST", "name": null, @@ -160866,36 +33257,53 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "not", "description": null, - "name": "state_comment", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_open_access_doc", "ofType": null } - } - }, + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "open_access_doc", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_open_access_doc_count", + "description": null, + "args": [ { - "defaultValue": null, + "name": "id", "description": null, - "name": "quick_search", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "submitter_id", "description": null, - "name": "md5sum", "type": { "kind": "LIST", "name": null, @@ -160904,12 +33312,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, - "description": null, "name": "ids", + "description": null, "type": { "kind": "LIST", "name": null, @@ -160918,97 +33326,102 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "quick_search", "description": null, - "name": "updated_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "first", "description": null, - "name": "data_category", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "offset", "description": null, - "name": "first", "type": { "kind": "SCALAR", "name": "Int", "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_aligned_reads_index_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ + }, + "defaultValue": null + }, { - "defaultValue": null, + "name": "created_before", "description": null, - "name": "order_by_asc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_after", "description": null, - "name": "updated_datetime", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_before", "description": null, - "name": "with_path_to_any", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updated_after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by_asc", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by_desc", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_links", "description": null, - "name": "run_name", "type": { "kind": "LIST", "name": null, @@ -161017,12 +33430,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_links_any", "description": null, - "name": "submitter_id", "type": { "kind": "LIST", "name": null, @@ -161031,46 +33444,26 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_links", "description": null, - "name": "file_size", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, - "description": null, "name": "with_path_to", + "description": null, "type": { "kind": "LIST", "name": null, @@ -161079,40 +33472,40 @@ "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to_any", "description": null, - "name": "protocol_used", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_path_to", "description": null, - "name": "cell_type", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_datetime", "description": null, - "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -161121,12 +33514,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_category", "description": null, - "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -161135,12 +33528,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_format", "description": null, - "name": "error_type", "type": { "kind": "LIST", "name": null, @@ -161149,12 +33542,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_type", "description": null, - "name": "object_id", "type": { "kind": "LIST", "name": null, @@ -161163,12 +33556,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "doc_url", "description": null, - "name": "state", "type": { "kind": "LIST", "name": null, @@ -161177,22 +33570,12 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "error_type", "description": null, - "name": "file_name", "type": { "kind": "LIST", "name": null, @@ -161201,22 +33584,12 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "file_name", "description": null, - "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -161225,26 +33598,26 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "file_size", "description": null, - "name": "panel_used", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, - "description": null, "name": "file_state", + "description": null, "type": { "kind": "LIST", "name": null, @@ -161253,12 +33626,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "md5sum", "description": null, - "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -161267,12 +33640,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "object_id", "description": null, - "name": "data_type", "type": { "kind": "LIST", "name": null, @@ -161281,50 +33654,40 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "project_id", "description": null, - "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "state", "description": null, - "name": "cell_count", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_datetime", "description": null, - "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -161333,60 +33696,59 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, - "description": null, "name": "not", + "description": null, "type": { "kind": "LIST", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_slide_image", + "name": "NotPropertiesInput_open_access_doc", "ofType": null } - } - }, + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "program", + "description": null, + "args": [ { - "defaultValue": null, + "name": "id", "description": null, - "name": "state_comment", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "submitter_id", "description": null, - "name": "quick_search", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "ids", "description": null, - "name": "data_format", "type": { "kind": "LIST", "name": null, @@ -161395,143 +33757,102 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "quick_search", "description": null, - "name": "frame_identifier", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "first", "description": null, - "name": "cell_identifier", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "offset", "description": null, - "name": "md5sum", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_before", "description": null, - "name": "ids", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_after", "description": null, - "name": "updated_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_before", "description": null, - "name": "data_category", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_after", "description": null, - "name": "experimental_strategy", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_asc", "description": null, - "name": "first", "type": { "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "slide_image", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "slide_image", - "ofType": null - } - } - }, - { - "args": [ + "name": "String", + "ofType": null + }, + "defaultValue": null + }, { - "defaultValue": null, + "name": "order_by_desc", "description": null, - "name": "order_by_asc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_links", "description": null, - "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -161540,26 +33861,26 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_links_any", "description": null, - "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_links", "description": null, - "name": "run_name", "type": { "kind": "LIST", "name": null, @@ -161568,60 +33889,40 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to", "description": null, - "name": "submitter_id", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to_any", "description": null, - "name": "file_size", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_path_to", "description": null, - "name": "with_path_to", "type": { "kind": "LIST", "name": null, @@ -161630,12 +33931,12 @@ "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "dbgap_accession_number", "description": null, - "name": "protocol_used", "type": { "kind": "LIST", "name": null, @@ -161644,12 +33945,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "name", "description": null, - "name": "cell_type", "type": { "kind": "LIST", "name": null, @@ -161658,40 +33959,63 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "not", "description": null, - "name": "without_links", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_program", "ofType": null } - } + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "program", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_program_count", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "submitter_id", "description": null, - "name": "created_datetime", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "ids", "description": null, - "name": "error_type", "type": { "kind": "LIST", "name": null, @@ -161700,74 +34024,102 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "quick_search", "description": null, - "name": "object_id", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "first", "description": null, - "name": "state", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "offset", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "created_before", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { "name": "created_after", + "description": null, "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_before", "description": null, - "name": "file_name", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updated_after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_asc", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { "name": "order_by_desc", + "description": null, "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_links", "description": null, - "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -161776,12 +34128,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_links_any", "description": null, - "name": "panel_used", "type": { "kind": "LIST", "name": null, @@ -161790,12 +34142,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_links", "description": null, - "name": "file_state", "type": { "kind": "LIST", "name": null, @@ -161804,50 +34156,40 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to", "description": null, - "name": "with_links_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to_any", "description": null, - "name": "data_type", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, - "description": null, "name": "without_path_to", + "description": null, "type": { "kind": "LIST", "name": null, @@ -161856,26 +34198,26 @@ "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "dbgap_accession_number", "description": null, - "name": "cell_count", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "name", "description": null, - "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -161884,36 +34226,63 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "not", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_program", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "core_metadata_collection", + "description": null, + "args": [ + { + "name": "id", "description": null, - "name": "offset", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "submitter_id", "description": null, - "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_slide_image", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "ids", "description": null, - "name": "state_comment", "type": { "kind": "LIST", "name": null, @@ -161922,102 +34291,102 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, - "description": null, "name": "quick_search", + "description": null, "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "first", "description": null, - "name": "data_format", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "offset", "description": null, - "name": "frame_identifier", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_before", "description": null, - "name": "cell_identifier", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_after", "description": null, - "name": "md5sum", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_before", "description": null, - "name": "ids", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, - "description": null, "name": "updated_after", + "description": null, "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_asc", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by_desc", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "with_links", "description": null, - "name": "data_category", "type": { "kind": "LIST", "name": null, @@ -162026,12 +34395,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_links_any", "description": null, - "name": "experimental_strategy", "type": { "kind": "LIST", "name": null, @@ -162040,35 +34409,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_slide_image_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, + "name": "without_links", "description": null, - "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -162077,26 +34423,26 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to", "description": null, - "name": "without_links", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to_any", "description": null, - "name": "without_path_to", "type": { "kind": "LIST", "name": null, @@ -162105,32 +34451,12 @@ "name": "WithPathToInput", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_path_to", "description": null, - "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, @@ -162139,12 +34465,12 @@ "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "accepts_healthy_volunteers", "description": null, - "name": "ids", "type": { "kind": "LIST", "name": null, @@ -162153,12 +34479,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "actual_enrollment", "description": null, - "name": "schema_version", "type": { "kind": "LIST", "name": null, @@ -162167,76 +34493,40 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "arm", "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_root", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "arm_description", "description": null, - "name": "order_by_desc", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "arm_name", "description": null, - "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -162245,73 +34535,68 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "arm_type", "description": null, - "name": "created_before", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "brief_summary", "description": null, - "name": "id", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "brief_title", "description": null, - "name": "with_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "category", "description": null, - "name": "first", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "root", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "root", - "ofType": null - } - } - }, - { - "args": [ + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, { - "defaultValue": null, + "name": "clinical_trial_website", "description": null, - "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -162320,12 +34605,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "collaborators", "description": null, - "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -162334,60 +34619,68 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "condition", "description": null, - "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "contact", "description": null, - "name": "order_by_asc", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "contributor", "description": null, - "name": "updated_before", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "coverage", "description": null, - "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_datetime", "description": null, - "name": "ids", "type": { "kind": "LIST", "name": null, @@ -162396,12 +34689,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "creator", "description": null, - "name": "schema_version", "type": { "kind": "LIST", "name": null, @@ -162410,76 +34703,96 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_availability_date", "description": null, - "name": "quick_search", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_available", "description": null, - "name": "updated_after", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_available_for_request", "description": null, - "name": "created_after", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_category", "description": null, - "name": "offset", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_format", "description": null, - "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_root", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_type", "description": null, - "name": "order_by_desc", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "description", "description": null, - "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -162488,79 +34801,82 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "eligibility_criteria", "description": null, - "name": "created_before", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "enrollment", "description": null, - "name": "id", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "fda_regulated_device_product", "description": null, - "name": "with_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "fda_regulated_drug_product", "description": null, - "name": "first", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_root_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, { - "defaultValue": null, + "name": "first_posted_date", "description": null, - "name": "order_by_asc", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "focus", "description": null, - "name": "creator", "type": { "kind": "LIST", "name": null, @@ -162569,26 +34885,26 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "has_data_monitoring_committee", "description": null, - "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "intervention_type", "description": null, - "name": "submitter_id", "type": { "kind": "LIST", "name": null, @@ -162597,26 +34913,26 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "ipd_sharing_statement", "description": null, - "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_core_metadata_collection", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "language", "description": null, - "name": "relation", "type": { "kind": "LIST", "name": null, @@ -162625,12 +34941,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "last_update_posted_date", "description": null, - "name": "contributor", "type": { "kind": "LIST", "name": null, @@ -162639,46 +34955,54 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "location", "description": null, - "name": "created_before", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "locations_removed", "description": null, - "name": "id", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "nct_number", "description": null, - "name": "with_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "original_estimated_enrollment", "description": null, - "name": "subject", "type": { "kind": "LIST", "name": null, @@ -162687,12 +35011,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "primary_completion_date", "description": null, - "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -162701,12 +35025,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "principle_investigator", "description": null, - "name": "title", "type": { "kind": "LIST", "name": null, @@ -162715,12 +35039,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "project_id", "description": null, - "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -162729,12 +35053,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "prs_account", "description": null, - "name": "format", "type": { "kind": "LIST", "name": null, @@ -162743,12 +35067,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "publications", "description": null, - "name": "source", "type": { "kind": "LIST", "name": null, @@ -162757,12 +35081,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "publisher", "description": null, - "name": "state", "type": { "kind": "LIST", "name": null, @@ -162771,32 +35095,40 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "recruitment_status", "description": null, - "name": "created_after", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "responsible_party", "description": null, - "name": "order_by_desc", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "rights", "description": null, - "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -162805,12 +35137,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "secondary_id", "description": null, - "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -162819,12 +35151,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "source", "description": null, - "name": "description", "type": { "kind": "LIST", "name": null, @@ -162833,12 +35165,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "state", "description": null, - "name": "data_type", "type": { "kind": "LIST", "name": null, @@ -162847,36 +35179,40 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "study_completion_date", "description": null, - "name": "updated_before", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "study_design_allocation", "description": null, - "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "study_design_intervention_model", "description": null, - "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -162885,12 +35221,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "study_design_masking", "description": null, - "name": "coverage", "type": { "kind": "LIST", "name": null, @@ -162899,22 +35235,26 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "study_design_primary_purpose", "description": null, - "name": "offset", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "study_phase", "description": null, - "name": "date", "type": { "kind": "LIST", "name": null, @@ -162923,22 +35263,26 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "study_start_date", "description": null, - "name": "quick_search", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "subject", "description": null, - "name": "language", "type": { "kind": "LIST", "name": null, @@ -162947,12 +35291,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "submitted_date", "description": null, - "name": "rights", "type": { "kind": "LIST", "name": null, @@ -162961,12 +35305,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "title", "description": null, - "name": "publisher", "type": { "kind": "LIST", "name": null, @@ -162975,12 +35319,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, - "description": null, "name": "updated_datetime", + "description": null, "type": { "kind": "LIST", "name": null, @@ -162989,12 +35333,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "us_product", "description": null, - "name": "ids", "type": { "kind": "LIST", "name": null, @@ -163003,33 +35347,38 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "verification_date", "description": null, - "name": "updated_after", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "not", "description": null, - "name": "first", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_core_metadata_collection", + "ofType": null + } + }, + "defaultValue": null } ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "core_metadata_collection", "type": { "kind": "LIST", "name": null, @@ -163038,24 +35387,27 @@ "name": "core_metadata_collection", "ofType": null } - } + }, + "isDeprecated": false, + "deprecationReason": null }, { + "name": "_core_metadata_collection_count", + "description": null, "args": [ { - "defaultValue": null, + "name": "id", "description": null, - "name": "order_by_asc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "submitter_id", "description": null, - "name": "creator", "type": { "kind": "LIST", "name": null, @@ -163064,116 +35416,130 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "ids", "description": null, - "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "quick_search", "description": null, - "name": "submitter_id", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "first", "description": null, - "name": "not", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_core_metadata_collection", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "offset", "description": null, - "name": "relation", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_before", "description": null, - "name": "contributor", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_after", "description": null, - "name": "created_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_before", "description": null, - "name": "id", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by_asc", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by_desc", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "with_links", "description": null, - "name": "with_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_links_any", "description": null, - "name": "subject", "type": { "kind": "LIST", "name": null, @@ -163182,12 +35548,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, - "description": null, "name": "without_links", + "description": null, "type": { "kind": "LIST", "name": null, @@ -163196,40 +35562,54 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to", "description": null, - "name": "title", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to_any", "description": null, - "name": "created_datetime", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null + }, + { + "name": "without_path_to", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "accepts_healthy_volunteers", "description": null, - "name": "format", "type": { "kind": "LIST", "name": null, @@ -163238,12 +35618,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "actual_enrollment", "description": null, - "name": "source", "type": { "kind": "LIST", "name": null, @@ -163252,12 +35632,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "arm", "description": null, - "name": "state", "type": { "kind": "LIST", "name": null, @@ -163266,32 +35646,12 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "arm_description", "description": null, - "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -163300,12 +35660,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "arm_name", "description": null, - "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -163314,12 +35674,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "arm_type", "description": null, - "name": "description", "type": { "kind": "LIST", "name": null, @@ -163328,12 +35688,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "brief_summary", "description": null, - "name": "data_type", "type": { "kind": "LIST", "name": null, @@ -163342,36 +35702,26 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "brief_title", "description": null, - "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "category", "description": null, - "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -163380,12 +35730,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "clinical_trial_website", "description": null, - "name": "coverage", "type": { "kind": "LIST", "name": null, @@ -163394,22 +35744,12 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "collaborators", "description": null, - "name": "date", "type": { "kind": "LIST", "name": null, @@ -163418,22 +35758,12 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "condition", "description": null, - "name": "language", "type": { "kind": "LIST", "name": null, @@ -163442,12 +35772,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "contact", "description": null, - "name": "rights", "type": { "kind": "LIST", "name": null, @@ -163456,12 +35786,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "contributor", "description": null, - "name": "publisher", "type": { "kind": "LIST", "name": null, @@ -163470,12 +35800,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "coverage", "description": null, - "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -163484,12 +35814,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_datetime", "description": null, - "name": "ids", "type": { "kind": "LIST", "name": null, @@ -163498,45 +35828,12 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_core_metadata_collection_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ - { - "defaultValue": null, + "name": "creator", "description": null, - "name": "relationship_gender", "type": { "kind": "LIST", "name": null, @@ -163545,46 +35842,26 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_availability_date", "description": null, - "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_available", "description": null, - "name": "submitter_id", "type": { "kind": "LIST", "name": null, @@ -163593,50 +35870,40 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_available_for_request", "description": null, - "name": "with_links", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_category", "description": null, - "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_family_history", + "kind": "SCALAR", + "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_format", "description": null, - "name": "relationship_type", "type": { "kind": "LIST", "name": null, @@ -163645,56 +35912,26 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, + "name": "data_type", "description": null, - "name": "with_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "description", "description": null, - "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -163703,12 +35940,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "eligibility_criteria", "description": null, - "name": "relative_with_cancer_history", "type": { "kind": "LIST", "name": null, @@ -163717,12 +35954,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "enrollment", "description": null, - "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -163731,12 +35968,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "fda_regulated_device_product", "description": null, - "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -163745,12 +35982,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "fda_regulated_drug_product", "description": null, - "name": "ids", "type": { "kind": "LIST", "name": null, @@ -163759,12 +35996,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "first_posted_date", "description": null, - "name": "relationship_primary_diagnosis", "type": { "kind": "LIST", "name": null, @@ -163773,12 +36010,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "focus", "description": null, - "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -163787,12 +36024,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "has_data_monitoring_committee", "description": null, - "name": "state", "type": { "kind": "LIST", "name": null, @@ -163801,80 +36038,40 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "intervention_type", "description": null, - "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "ipd_sharing_statement", "description": null, - "name": "relationship_age_at_diagnosis", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "language", "description": null, - "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -163883,29 +36080,12 @@ "name": "String", "ofType": null } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "family_history", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "family_history", - "ofType": null - } - } - }, - { - "args": [ + }, + "defaultValue": null + }, { - "defaultValue": null, + "name": "last_update_posted_date", "description": null, - "name": "relationship_gender", "type": { "kind": "LIST", "name": null, @@ -163914,46 +36094,26 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "location", "description": null, - "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "locations_removed", "description": null, - "name": "submitter_id", "type": { "kind": "LIST", "name": null, @@ -163962,12 +36122,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "nct_number", "description": null, - "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -163976,36 +36136,26 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "original_estimated_enrollment", "description": null, - "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_family_history", + "kind": "SCALAR", + "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "primary_completion_date", "description": null, - "name": "relationship_type", "type": { "kind": "LIST", "name": null, @@ -164014,56 +36164,26 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "principle_investigator", "description": null, - "name": "with_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "project_id", "description": null, - "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -164072,12 +36192,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "prs_account", "description": null, - "name": "relative_with_cancer_history", "type": { "kind": "LIST", "name": null, @@ -164086,12 +36206,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "publications", "description": null, - "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -164100,12 +36220,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "publisher", "description": null, - "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -164114,12 +36234,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "recruitment_status", "description": null, - "name": "ids", "type": { "kind": "LIST", "name": null, @@ -164128,12 +36248,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "responsible_party", "description": null, - "name": "relationship_primary_diagnosis", "type": { "kind": "LIST", "name": null, @@ -164142,12 +36262,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "rights", "description": null, - "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -164156,12 +36276,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "secondary_id", "description": null, - "name": "state", "type": { "kind": "LIST", "name": null, @@ -164170,80 +36290,40 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "source", "description": null, - "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_desc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, + "name": "state", "description": null, - "name": "relationship_age_at_diagnosis", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "study_completion_date", "description": null, - "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -164252,25 +36332,12 @@ "name": "String", "ofType": null } - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_family_history_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ + }, + "defaultValue": null + }, { - "defaultValue": null, + "name": "study_design_allocation", "description": null, - "name": "sample_type_id", "type": { "kind": "LIST", "name": null, @@ -164279,22 +36346,12 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "order_by_asc", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "study_design_intervention_model", "description": null, - "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -164303,12 +36360,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "study_design_masking", "description": null, - "name": "biospecimen_anatomic_site", "type": { "kind": "LIST", "name": null, @@ -164317,26 +36374,26 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "study_design_primary_purpose", "description": null, - "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "study_phase", "description": null, - "name": "oct_embedded", "type": { "kind": "LIST", "name": null, @@ -164345,12 +36402,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "study_start_date", "description": null, - "name": "tumor_code_id", "type": { "kind": "LIST", "name": null, @@ -164359,12 +36416,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "subject", "description": null, - "name": "submitter_id", "type": { "kind": "LIST", "name": null, @@ -164373,12 +36430,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "submitted_date", "description": null, - "name": "intermediate_dimension", "type": { "kind": "LIST", "name": null, @@ -164387,74 +36444,54 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "title", "description": null, - "name": "sample_volume", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_datetime", "description": null, - "name": "with_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "us_product", "description": null, - "name": "is_ffpe", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "verification_date", "description": null, - "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -164463,26 +36500,49 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "not", "description": null, - "name": "created_datetime", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_core_metadata_collection", "ofType": null } - } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "clinical_trial_file", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "submitter_id", "description": null, - "name": "tumor_descriptor", "type": { "kind": "LIST", "name": null, @@ -164491,12 +36551,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "ids", "description": null, - "name": "sample_type", "type": { "kind": "LIST", "name": null, @@ -164505,88 +36565,102 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "quick_search", "description": null, - "name": "time_between_excision_and_freezing", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "first", "description": null, - "name": "state", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_before", "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { "name": "created_after", + "description": null, "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_before", "description": null, - "name": "shortest_dimension", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_after", "description": null, - "name": "order_by_desc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_asc", "description": null, - "name": "diagnosis_pathologically_confirmed", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_desc", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "with_links", "description": null, - "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -164595,26 +36669,26 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_links_any", "description": null, - "name": "current_weight", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_links", "description": null, - "name": "composition", "type": { "kind": "LIST", "name": null, @@ -164623,50 +36697,40 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to", "description": null, - "name": "with_links_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to_any", "description": null, - "name": "time_between_clamping_and_freezing", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, - "description": null, "name": "without_path_to", + "description": null, "type": { "kind": "LIST", "name": null, @@ -164675,12 +36739,12 @@ "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_datetime", "description": null, - "name": "method_of_sample_procurement", "type": { "kind": "LIST", "name": null, @@ -164689,12 +36753,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_category", "description": null, - "name": "tumor_code", "type": { "kind": "LIST", "name": null, @@ -164703,12 +36767,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_format", "description": null, - "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -164717,12 +36781,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_type", "description": null, - "name": "tissue_type", "type": { "kind": "LIST", "name": null, @@ -164731,50 +36795,54 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "error_type", "description": null, - "name": "offset", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "file_name", "description": null, - "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_sample", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "file_size", "description": null, - "name": "days_to_sample_procurement", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "Float", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "file_state", "description": null, - "name": "freezing_method", "type": { "kind": "LIST", "name": null, @@ -164783,22 +36851,12 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "quick_search", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "md5sum", "description": null, - "name": "ids", "type": { "kind": "LIST", "name": null, @@ -164807,12 +36865,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "object_id", "description": null, - "name": "preservation_method", "type": { "kind": "LIST", "name": null, @@ -164821,50 +36879,40 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "project_id", "description": null, - "name": "days_to_collection", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "state", "description": null, - "name": "initial_weight", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_datetime", "description": null, - "name": "longest_dimension", "type": { "kind": "LIST", "name": null, @@ -164873,63 +36921,53 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "not", "description": null, - "name": "first", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_clinical_trial_file", + "ofType": null + } + }, + "defaultValue": null } ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "sample", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "OBJECT", - "name": "sample", + "name": "clinical_trial_file", "ofType": null } - } + }, + "isDeprecated": false, + "deprecationReason": null }, { + "name": "_clinical_trial_file_count", + "description": null, "args": [ { - "defaultValue": null, - "description": null, - "name": "sample_type_id", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, + "name": "id", "description": null, - "name": "order_by_asc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "submitter_id", "description": null, - "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -164938,12 +36976,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "ids", "description": null, - "name": "biospecimen_anatomic_site", "type": { "kind": "LIST", "name": null, @@ -164952,144 +36990,130 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "quick_search", "description": null, - "name": "with_path_to_any", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "first", "description": null, - "name": "oct_embedded", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "offset", "description": null, - "name": "tumor_code_id", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_before", "description": null, - "name": "submitter_id", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_after", "description": null, - "name": "intermediate_dimension", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_before", "description": null, - "name": "sample_volume", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_after", "description": null, - "name": "created_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_asc", "description": null, - "name": "id", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_desc", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "with_links", "description": null, - "name": "with_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_links_any", "description": null, - "name": "is_ffpe", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, - "description": null, "name": "without_links", + "description": null, "type": { "kind": "LIST", "name": null, @@ -165098,54 +37122,54 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to", "description": null, - "name": "created_datetime", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "with_path_to_any", "description": null, - "name": "tumor_descriptor", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "without_path_to", "description": null, - "name": "sample_type", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_datetime", "description": null, - "name": "time_between_excision_and_freezing", "type": { "kind": "LIST", "name": null, @@ -165154,12 +37178,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_category", "description": null, - "name": "state", "type": { "kind": "LIST", "name": null, @@ -165168,22 +37192,12 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "created_after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_format", "description": null, - "name": "shortest_dimension", "type": { "kind": "LIST", "name": null, @@ -165192,22 +37206,26 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_type", "description": null, - "name": "order_by_desc", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "error_type", "description": null, - "name": "diagnosis_pathologically_confirmed", "type": { "kind": "LIST", "name": null, @@ -165216,12 +37234,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "file_name", "description": null, - "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -165230,12 +37248,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "file_size", "description": null, - "name": "current_weight", "type": { "kind": "LIST", "name": null, @@ -165244,12 +37262,12 @@ "name": "Float", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "file_state", "description": null, - "name": "composition", "type": { "kind": "LIST", "name": null, @@ -165258,12 +37276,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "md5sum", "description": null, - "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -165272,12 +37290,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "object_id", "description": null, - "name": "time_between_clamping_and_freezing", "type": { "kind": "LIST", "name": null, @@ -165286,36 +37304,26 @@ "name": "String", "ofType": null } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updated_before", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "project_id", "description": null, - "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "state", "description": null, - "name": "method_of_sample_procurement", "type": { "kind": "LIST", "name": null, @@ -165324,12 +37332,12 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_datetime", "description": null, - "name": "tumor_code", "type": { "kind": "LIST", "name": null, @@ -165338,26 +37346,59 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "not", "description": null, - "name": "with_links", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_clinical_trial_file", "ofType": null } - } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "datanode", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "submitter_id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "ids", "description": null, - "name": "tissue_type", "type": { "kind": "LIST", "name": null, @@ -165366,267 +37407,242 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "quick_search", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", "description": null, - "name": "offset", "type": { "kind": "SCALAR", "name": "Int", "ofType": null - } + }, + "defaultValue": "10" }, { - "defaultValue": null, + "name": "offset", "description": null, - "name": "not", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_sample", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_before", "description": null, - "name": "days_to_sample_procurement", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_after", "description": null, - "name": "freezing_method", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_before", "description": null, - "name": "quick_search", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_after", "description": null, - "name": "ids", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_asc", "description": null, - "name": "preservation_method", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "order_by_desc", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "created_datetime", "description": null, - "name": "days_to_collection", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_category", "description": null, - "name": "updated_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_format", "description": null, - "name": "initial_weight", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "data_type", "description": null, - "name": "longest_dimension", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "error_type", "description": null, - "name": "first", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "_sample_count", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "args": [ + }, + "defaultValue": null + }, { - "defaultValue": null, + "name": "file_name", "description": null, - "name": "md5sum", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "file_size", "description": null, - "name": "data_category", "type": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "file_state", "description": null, - "name": "order_by_asc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "md5sum", "description": null, - "name": "updated_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "object_id", "description": null, - "name": "file_name", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "project_id", "description": null, - "name": "file_size", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "state", "description": null, - "name": "data_format", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "updated_datetime", "description": null, - "name": "quick_search", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "type", "description": null, - "name": "offset", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, - "description": null, "name": "of_type", + "description": null, "type": { "kind": "LIST", "name": null, @@ -165635,224 +37651,264 @@ "name": "String", "ofType": null } - } + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DataNode", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_node_type", + "description": null, + "args": [ + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "10" }, { - "defaultValue": null, + "name": "order_by_asc", "description": null, - "name": "submitter_id", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "order_by_desc", "description": null, - "name": "created_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "title", "description": null, - "name": "id", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "constraints", "description": null, - "name": "data_type", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "systemProperties", "description": null, - "name": "created_datetime", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "type", "description": null, - "name": "state_comment", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "project", "description": null, - "name": "error_type", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "required", "description": null, - "name": "updated_datetime", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "program", "description": null, - "name": "ids", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "submittable", "description": null, - "name": "object_id", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "validators", "description": null, - "name": "state", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "id", "description": null, - "name": "updated_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "description", "description": null, - "name": "created_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "namespace", "description": null, - "name": "order_by_desc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "uniqueKeys", "description": null, - "name": "project_id", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "root", "description": null, - "name": "type", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": null, + "name": "links", "description": null, - "name": "file_state", "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, { - "defaultValue": "10", + "name": "category", "description": null, - "name": "first", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - } + }, + "defaultValue": null + }, + { + "name": "additionalProperties", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "properties", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null } ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "datanode", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "OBJECT", - "name": "DataNode", + "name": "NodeType", "ofType": null } - } + }, + "isDeprecated": false, + "deprecationReason": null } ], "inputFields": null, "interfaces": [], - "kind": "OBJECT", - "name": "viewer", + "enumValues": null, "possibleTypes": null }, { + "kind": "OBJECT", + "name": "__Schema", "description": "A GraphQL Schema defines the capabilities of a GraphQL server. It exposes all available types and directives on the server, as well as the entry points for query, mutation and subscription operations.", - "enumValues": null, "fields": [ { - "args": [], - "deprecationReason": null, - "description": "A list of all types supported by this server.", - "isDeprecated": false, "name": "types", + "description": "A list of all types supported by this server.", + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -165869,14 +37925,14 @@ } } } - } + }, + "isDeprecated": false, + "deprecationReason": null }, { - "args": [], - "deprecationReason": null, - "description": "The type that query operations will be rooted at.", - "isDeprecated": false, "name": "queryType", + "description": "The type that query operations will be rooted at.", + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -165885,38 +37941,38 @@ "name": "__Type", "ofType": null } - } + }, + "isDeprecated": false, + "deprecationReason": null }, { - "args": [], - "deprecationReason": null, - "description": "If this server supports mutation, the type that mutation operations will be rooted at.", - "isDeprecated": false, "name": "mutationType", + "description": "If this server supports mutation, the type that mutation operations will be rooted at.", + "args": [], "type": { "kind": "OBJECT", "name": "__Type", "ofType": null - } + }, + "isDeprecated": false, + "deprecationReason": null }, { - "args": [], - "deprecationReason": null, - "description": "If this server support subscription, the type that subscription operations will be rooted at.", - "isDeprecated": false, "name": "subscriptionType", + "description": "If this server support subscription, the type that subscription operations will be rooted at.", + "args": [], "type": { "kind": "OBJECT", "name": "__Type", "ofType": null - } + }, + "isDeprecated": false, + "deprecationReason": null }, { - "args": [], - "deprecationReason": null, - "description": "A list of all directives supported by this server.", - "isDeprecated": false, "name": "directives", + "description": "A list of all directives supported by this server.", + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -165933,25 +37989,25 @@ } } } - } + }, + "isDeprecated": false, + "deprecationReason": null } ], "inputFields": null, "interfaces": [], - "kind": "OBJECT", - "name": "__Schema", + "enumValues": null, "possibleTypes": null }, { + "kind": "OBJECT", + "name": "__Type", "description": "The fundamental unit of any GraphQL Schema is the type. There are many kinds of types in GraphQL as represented by the `__TypeKind` enum.\n\nDepending on the kind of a type, certain fields describe information about that type. Scalar types provide no information beyond a name and description, while Enum types provide their values. Object and Interface types provide the fields they describe. Abstract types, Union and Interface, provide the Object types possible at runtime. List and NonNull types compose other types.", - "enumValues": null, "fields": [ { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, "name": "kind", + "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -165960,49 +38016,49 @@ "name": "__TypeKind", "ofType": null } - } + }, + "isDeprecated": false, + "deprecationReason": null }, { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, "name": "name", + "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "isDeprecated": false, + "deprecationReason": null }, { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, "name": "description", + "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "isDeprecated": false, + "deprecationReason": null }, { + "name": "fields", + "description": null, "args": [ { - "defaultValue": "false", - "description": null, "name": "includeDeprecated", + "description": null, "type": { "kind": "SCALAR", "name": "Boolean", "ofType": null - } + }, + "defaultValue": "false" } ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "fields", "type": { "kind": "LIST", "name": null, @@ -166015,14 +38071,14 @@ "ofType": null } } - } + }, + "isDeprecated": false, + "deprecationReason": null }, { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, "name": "interfaces", + "description": null, + "args": [], "type": { "kind": "LIST", "name": null, @@ -166035,14 +38091,14 @@ "ofType": null } } - } + }, + "isDeprecated": false, + "deprecationReason": null }, { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, "name": "possibleTypes", + "description": null, + "args": [], "type": { "kind": "LIST", "name": null, @@ -166055,25 +38111,25 @@ "ofType": null } } - } + }, + "isDeprecated": false, + "deprecationReason": null }, { + "name": "enumValues", + "description": null, "args": [ { - "defaultValue": "false", - "description": null, "name": "includeDeprecated", + "description": null, "type": { "kind": "SCALAR", "name": "Boolean", "ofType": null - } + }, + "defaultValue": "false" } ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "enumValues", "type": { "kind": "LIST", "name": null, @@ -166086,14 +38142,14 @@ "ofType": null } } - } + }, + "isDeprecated": false, + "deprecationReason": null }, { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, "name": "inputFields", + "description": null, + "args": [], "type": { "kind": "LIST", "name": null, @@ -166106,96 +38162,96 @@ "ofType": null } } - } + }, + "isDeprecated": false, + "deprecationReason": null }, { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, "name": "ofType", + "description": null, + "args": [], "type": { "kind": "OBJECT", "name": "__Type", "ofType": null - } + }, + "isDeprecated": false, + "deprecationReason": null } ], "inputFields": null, "interfaces": [], - "kind": "OBJECT", - "name": "__Type", + "enumValues": null, "possibleTypes": null }, { + "kind": "ENUM", + "name": "__TypeKind", "description": "An enum describing what kind of type a given `__Type` is", + "fields": null, + "inputFields": null, + "interfaces": null, "enumValues": [ { - "deprecationReason": null, + "name": "SCALAR", "description": "Indicates this type is a scalar.", "isDeprecated": false, - "name": "SCALAR" + "deprecationReason": null }, { - "deprecationReason": null, + "name": "OBJECT", "description": "Indicates this type is an object. `fields` and `interfaces` are valid fields.", "isDeprecated": false, - "name": "OBJECT" + "deprecationReason": null }, { - "deprecationReason": null, + "name": "INTERFACE", "description": "Indicates this type is an interface. `fields` and `possibleTypes` are valid fields.", "isDeprecated": false, - "name": "INTERFACE" + "deprecationReason": null }, { - "deprecationReason": null, + "name": "UNION", "description": "Indicates this type is a union. `possibleTypes` is a valid field.", "isDeprecated": false, - "name": "UNION" + "deprecationReason": null }, { - "deprecationReason": null, + "name": "ENUM", "description": "Indicates this type is an enum. `enumValues` is a valid field.", "isDeprecated": false, - "name": "ENUM" + "deprecationReason": null }, { - "deprecationReason": null, + "name": "INPUT_OBJECT", "description": "Indicates this type is an input object. `inputFields` is a valid field.", "isDeprecated": false, - "name": "INPUT_OBJECT" + "deprecationReason": null }, { - "deprecationReason": null, + "name": "LIST", "description": "Indicates this type is a list. `ofType` is a valid field.", "isDeprecated": false, - "name": "LIST" + "deprecationReason": null }, { - "deprecationReason": null, + "name": "NON_NULL", "description": "Indicates this type is a non-null. `ofType` is a valid field.", "isDeprecated": false, - "name": "NON_NULL" + "deprecationReason": null } ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "__TypeKind", "possibleTypes": null }, { + "kind": "OBJECT", + "name": "__Field", "description": "Object and Interface types are described by a list of Fields, each of which has a name, potentially a list of arguments, and a return type.", - "enumValues": null, "fields": [ { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, "name": "name", + "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -166204,26 +38260,26 @@ "name": "String", "ofType": null } - } + }, + "isDeprecated": false, + "deprecationReason": null }, { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, "name": "description", + "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "isDeprecated": false, + "deprecationReason": null }, { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, "name": "args", + "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -166240,14 +38296,14 @@ } } } - } + }, + "isDeprecated": false, + "deprecationReason": null }, { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, "name": "type", + "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -166256,14 +38312,14 @@ "name": "__Type", "ofType": null } - } + }, + "isDeprecated": false, + "deprecationReason": null }, { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, "name": "isDeprecated", + "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -166272,37 +38328,37 @@ "name": "Boolean", "ofType": null } - } + }, + "isDeprecated": false, + "deprecationReason": null }, { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, "name": "deprecationReason", + "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "isDeprecated": false, + "deprecationReason": null } ], "inputFields": null, "interfaces": [], - "kind": "OBJECT", - "name": "__Field", + "enumValues": null, "possibleTypes": null }, { + "kind": "OBJECT", + "name": "__InputValue", "description": "Arguments provided to Fields or Directives and the input fields of an InputObject are represented as Input Values which describe their type and optionally a default value.", - "enumValues": null, "fields": [ { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, "name": "name", + "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -166311,26 +38367,26 @@ "name": "String", "ofType": null } - } + }, + "isDeprecated": false, + "deprecationReason": null }, { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, "name": "description", + "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "isDeprecated": false, + "deprecationReason": null }, { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, "name": "type", + "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -166339,37 +38395,37 @@ "name": "__Type", "ofType": null } - } + }, + "isDeprecated": false, + "deprecationReason": null }, { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, "name": "defaultValue", + "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "isDeprecated": false, + "deprecationReason": null } ], "inputFields": null, "interfaces": [], - "kind": "OBJECT", - "name": "__InputValue", + "enumValues": null, "possibleTypes": null }, { + "kind": "OBJECT", + "name": "__EnumValue", "description": "One possible value for a given Enum. Enum values are unique values, not a placeholder for a string or numeric value. However an Enum value is returned in a JSON response as a string.", - "enumValues": null, "fields": [ { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, "name": "name", + "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -166378,26 +38434,26 @@ "name": "String", "ofType": null } - } + }, + "isDeprecated": false, + "deprecationReason": null }, { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, "name": "description", + "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "isDeprecated": false, + "deprecationReason": null }, { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, "name": "isDeprecated", + "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -166406,37 +38462,37 @@ "name": "Boolean", "ofType": null } - } + }, + "isDeprecated": false, + "deprecationReason": null }, { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, "name": "deprecationReason", + "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "isDeprecated": false, + "deprecationReason": null } ], "inputFields": null, "interfaces": [], - "kind": "OBJECT", - "name": "__EnumValue", + "enumValues": null, "possibleTypes": null }, { + "kind": "OBJECT", + "name": "__Directive", "description": "A Directive provides a way to describe alternate runtime execution and type validation behavior in a GraphQL document.\n\nIn some cases, you need to provide options to alter GraphQL's execution behavior in ways field arguments will not suffice, such as conditionally including or skipping a field. Directives provide this by describing additional information to the executor.", - "enumValues": null, "fields": [ { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, "name": "name", + "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -166445,26 +38501,26 @@ "name": "String", "ofType": null } - } + }, + "isDeprecated": false, + "deprecationReason": null }, { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, "name": "description", + "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "isDeprecated": false, + "deprecationReason": null }, { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, "name": "locations", + "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -166481,14 +38537,14 @@ } } } - } + }, + "isDeprecated": false, + "deprecationReason": null }, { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, "name": "args", + "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -166505,14 +38561,14 @@ } } } - } + }, + "isDeprecated": false, + "deprecationReason": null }, { - "args": [], - "deprecationReason": "Use `locations`.", - "description": null, - "isDeprecated": true, "name": "onOperation", + "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -166521,14 +38577,14 @@ "name": "Boolean", "ofType": null } - } + }, + "isDeprecated": true, + "deprecationReason": "Use `locations`." }, { - "args": [], - "deprecationReason": "Use `locations`.", - "description": null, - "isDeprecated": true, "name": "onFragment", + "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -166537,14 +38593,14 @@ "name": "Boolean", "ofType": null } - } + }, + "isDeprecated": true, + "deprecationReason": "Use `locations`." }, { - "args": [], - "deprecationReason": "Use `locations`.", - "description": null, - "isDeprecated": true, "name": "onField", + "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -166553,134 +38609,187 @@ "name": "Boolean", "ofType": null } - } + }, + "isDeprecated": true, + "deprecationReason": "Use `locations`." } ], "inputFields": null, "interfaces": [], - "kind": "OBJECT", - "name": "__Directive", + "enumValues": null, "possibleTypes": null }, { + "kind": "ENUM", + "name": "__DirectiveLocation", "description": "A Directive can be adjacent to many parts of the GraphQL language, a __DirectiveLocation describes one such possible adjacencies.", + "fields": null, + "inputFields": null, + "interfaces": null, "enumValues": [ { - "deprecationReason": null, + "name": "QUERY", "description": "Location adjacent to a query operation.", "isDeprecated": false, - "name": "QUERY" + "deprecationReason": null }, { - "deprecationReason": null, + "name": "MUTATION", "description": "Location adjacent to a mutation operation.", "isDeprecated": false, - "name": "MUTATION" + "deprecationReason": null }, { - "deprecationReason": null, + "name": "SUBSCRIPTION", "description": "Location adjacent to a subscription operation.", "isDeprecated": false, - "name": "SUBSCRIPTION" + "deprecationReason": null }, { - "deprecationReason": null, + "name": "FIELD", "description": "Location adjacent to a field.", "isDeprecated": false, - "name": "FIELD" + "deprecationReason": null }, { - "deprecationReason": null, + "name": "FRAGMENT_DEFINITION", "description": "Location adjacent to a fragment definition.", "isDeprecated": false, - "name": "FRAGMENT_DEFINITION" + "deprecationReason": null }, { - "deprecationReason": null, + "name": "FRAGMENT_SPREAD", "description": "Location adjacent to a fragment spread.", "isDeprecated": false, - "name": "FRAGMENT_SPREAD" + "deprecationReason": null }, { - "deprecationReason": null, + "name": "INLINE_FRAGMENT", "description": "Location adjacent to an inline fragment.", "isDeprecated": false, - "name": "INLINE_FRAGMENT" + "deprecationReason": null }, { - "deprecationReason": null, + "name": "SCHEMA", "description": "Location adjacent to a schema definition.", "isDeprecated": false, - "name": "SCHEMA" + "deprecationReason": null }, { - "deprecationReason": null, + "name": "SCALAR", "description": "Location adjacent to a scalar definition.", "isDeprecated": false, - "name": "SCALAR" + "deprecationReason": null }, { - "deprecationReason": null, + "name": "OBJECT", "description": "Location adjacent to an object definition.", "isDeprecated": false, - "name": "OBJECT" + "deprecationReason": null }, { - "deprecationReason": null, + "name": "FIELD_DEFINITION", "description": "Location adjacent to a field definition.", "isDeprecated": false, - "name": "FIELD_DEFINITION" + "deprecationReason": null }, { - "deprecationReason": null, + "name": "ARGUMENT_DEFINITION", "description": "Location adjacent to an argument definition.", "isDeprecated": false, - "name": "ARGUMENT_DEFINITION" + "deprecationReason": null }, { - "deprecationReason": null, + "name": "INTERFACE", "description": "Location adjacent to an interface definition.", "isDeprecated": false, - "name": "INTERFACE" + "deprecationReason": null }, { - "deprecationReason": null, + "name": "UNION", "description": "Location adjacent to a union definition.", "isDeprecated": false, - "name": "UNION" + "deprecationReason": null }, { - "deprecationReason": null, + "name": "ENUM", "description": "Location adjacent to an enum definition.", "isDeprecated": false, - "name": "ENUM" + "deprecationReason": null }, { - "deprecationReason": null, + "name": "ENUM_VALUE", "description": "Location adjacent to an enum value definition.", "isDeprecated": false, - "name": "ENUM_VALUE" + "deprecationReason": null }, { - "deprecationReason": null, + "name": "INPUT_OBJECT", "description": "Location adjacent to an input object definition.", "isDeprecated": false, - "name": "INPUT_OBJECT" + "deprecationReason": null }, { - "deprecationReason": null, + "name": "INPUT_FIELD_DEFINITION", "description": "Location adjacent to an input object field definition.", "isDeprecated": false, - "name": "INPUT_FIELD_DEFINITION" + "deprecationReason": null } ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "__DirectiveLocation", "possibleTypes": null } + ], + "directives": [ + { + "name": "include", + "description": "Directs the executor to include this field or fragment only when the `if` argument is true.", + "locations": [ + "FIELD", + "FRAGMENT_SPREAD", + "INLINE_FRAGMENT" + ], + "args": [ + { + "name": "if", + "description": "Included when true.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "defaultValue": null + } + ] + }, + { + "name": "skip", + "description": "Directs the executor to skip this field or fragment when the `if` argument is true.", + "locations": [ + "FIELD", + "FRAGMENT_SPREAD", + "INLINE_FRAGMENT" + ], + "args": [ + { + "name": "if", + "description": "Skipped when true.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "defaultValue": null + } + ] + } ] } } diff --git a/src/Discovery/Utils/MDSUtils/MDSUtils.jsx b/src/Discovery/Utils/MDSUtils/MDSUtils.jsx index bde372f93d..57ddefab08 100644 --- a/src/Discovery/Utils/MDSUtils/MDSUtils.jsx +++ b/src/Discovery/Utils/MDSUtils/MDSUtils.jsx @@ -1,16 +1,15 @@ import { mdsURL, studyRegistrationConfig } from '../../../localconf'; -const LIMIT = 2000; // required or else mds defaults to returning 10 records const STUDY_DATA_FIELD = 'gen3_discovery'; // field in the MDS response that contains the study data -export const loadStudiesFromMDS = async (guidType = 'discovery_metadata') => { +const loadStudiesFromMDS = async (guidType = 'discovery_metadata', LIMIT= 2000, loadAllMetadata = true ) => { try { let allStudies = []; let offset = 0; // request up to LIMIT studies from MDS at a time. let shouldContinue = true; while (shouldContinue) { - const url = `${mdsURL}?data=True&_guid_type=${guidType}&limit=${LIMIT}&offset=${offset}`; + const url =`${mdsURL}?data=True&_guid_type=${guidType}&limit=${LIMIT}&offset=${offset}`; // It's OK to disable no-await-in-loop rule here -- it's telling us to refactor // using Promise.all() so that we can fire multiple requests at one. // But we WANT to delay sending the next request to MDS until we know we need it. @@ -30,8 +29,8 @@ export const loadStudiesFromMDS = async (guidType = 'discovery_metadata') => { return study; }); allStudies = allStudies.concat(studies); - const noMoreStudiesToLoad = studies.length < LIMIT; - if (noMoreStudiesToLoad) { + const noMoreStudiesToLoad = studies.length <= LIMIT ; + if (noMoreStudiesToLoad || loadAllMetadata === false) { shouldContinue = false; return allStudies; } @@ -43,29 +42,4 @@ export const loadStudiesFromMDS = async (guidType = 'discovery_metadata') => { } }; -export const getSomeStudiesFromMDS = async (guidType = 'discovery_metadata', numberOfStudies = 10) => { - try { - let someStudies = []; - const url = `${mdsURL}?data=True&_guid_type=${guidType}&limit=${numberOfStudies}`; - const res = await fetch(url); - if (res.status !== 200) { - throw new Error(`Request for study data at ${url} failed. - Response: ${JSON.stringify(res, null, 2)}`); - } - // eslint-disable-next-line no-await-in-loop - const jsonResponse = await res.json(); - const studies = Object.values(jsonResponse).map((entry) => { - const study = { ...entry[STUDY_DATA_FIELD] }; - // copy VLMD info if exists - if (studyRegistrationConfig?.dataDictionaryField - && entry[studyRegistrationConfig.dataDictionaryField]) { - study[studyRegistrationConfig.dataDictionaryField] = entry[studyRegistrationConfig.dataDictionaryField]; - } - return study; - }); - someStudies = someStudies.concat(studies); - return someStudies; - } catch (err) { - throw new Error(`Request for study data failed: ${err}`); - } -}; +export default loadStudiesFromMDS; diff --git a/src/Discovery/Utils/MDSUtils/MDSUtils.test.jsx b/src/Discovery/Utils/MDSUtils/MDSUtils.test.jsx index f3a0316a76..9c9248a2b8 100644 --- a/src/Discovery/Utils/MDSUtils/MDSUtils.test.jsx +++ b/src/Discovery/Utils/MDSUtils/MDSUtils.test.jsx @@ -1,26 +1,9 @@ -import { loadStudiesFromMDS, getSomeStudiesFromMDS } from './MDSUtils'; +import loadStudiesFromMDS from './MDSUtils'; import { mdsURL } from '../../../localconf'; global.fetch = jest.fn(); -const checkForFetchError = async (targetFunction) => { - const mockResponse = { - 0: { gen3_discovery: { name: 'Study 1' } }, - 1: { gen3_discovery: { name: 'Study 2' } }, - }; - fetch.mockResolvedValueOnce({ - status: 401, - json: jest.fn().mockResolvedValueOnce(mockResponse), - }); - const expectedErrorMsg = 'Request for study data failed: Error'; - let actualErrorMsg = null; - try { - await targetFunction(); - } catch (e) { - actualErrorMsg = e.message; - } - expect(actualErrorMsg.toString().includes(expectedErrorMsg)).toBe(true); -}; + describe('MDS Data Loading Functions', () => { afterEach(() => { @@ -28,17 +11,15 @@ describe('MDS Data Loading Functions', () => { }); describe('loadStudiesFromMDS', () => { - it('should load studies successfully', async () => { + it('should load studies successfully with limit of 2000', async () => { const mockResponse = { 0: { gen3_discovery: { name: 'Study 1' } }, 1: { gen3_discovery: { name: 'Study 2' } }, }; - fetch.mockResolvedValueOnce({ status: 200, json: jest.fn().mockResolvedValueOnce(mockResponse), }); - const studies = await loadStudiesFromMDS(); expect(studies).toEqual([{ name: 'Study 1' }, { name: 'Study 2' }]); expect(fetch).toHaveBeenCalledTimes(1); @@ -47,8 +28,40 @@ describe('MDS Data Loading Functions', () => { ); }); + it('should load studies successfully with limit of 5', async () => { + const mockResponse = { + 0: { gen3_discovery: { name: 'Study 1' } }, + 1: { gen3_discovery: { name: 'Study 2' } }, + }; + fetch.mockResolvedValueOnce({ + status: 200, + json: jest.fn().mockResolvedValueOnce(mockResponse), + }); + const studies = await loadStudiesFromMDS('discovery_metadata', 5); + expect(studies).toEqual([{ name: 'Study 1' }, { name: 'Study 2' }]); + expect(fetch).toHaveBeenCalledTimes(1); + expect(fetch).toHaveBeenCalledWith( + `${mdsURL}?data=True&_guid_type=discovery_metadata&limit=5&offset=0`, + ); + }); + it('should throw an error on fetch failure', async () => { - checkForFetchError(loadStudiesFromMDS); + const mockResponse = { + 0: { gen3_discovery: { name: 'Study 1' } }, + 1: { gen3_discovery: { name: 'Study 2' } }, + }; + fetch.mockResolvedValueOnce({ + status: 401, + json: jest.fn().mockResolvedValueOnce(mockResponse), + }); + const expectedErrorMsg = 'Request for study data failed: Error'; + let actualErrorMsg = null; + try { + await loadStudiesFromMDS(); + } catch (e) { + actualErrorMsg = e.message; + } + expect(actualErrorMsg.toString().includes(expectedErrorMsg)).toBe(true); }); it('should load up to 2000 studies, then load more with a secondary request', async () => { @@ -70,29 +83,5 @@ describe('MDS Data Loading Functions', () => { expect(fetch).toHaveBeenCalledTimes(2); expect(studies.length).toBe(2500); }); - - describe('getSomeStudiesFromMDS', () => { - it('should retrieve a limited number of studies', async () => { - const mockResponse = { - 0: { gen3_discovery: { name: 'Study 1' } }, - 1: { gen3_discovery: { name: 'Study 2' } }, - }; - - fetch.mockResolvedValueOnce({ - status: 200, - json: jest.fn().mockResolvedValueOnce(mockResponse), - }); - - const studies = await getSomeStudiesFromMDS('discovery_metadata', 2); - expect(studies).toEqual([{ name: 'Study 1' }, { name: 'Study 2' }]); - expect(fetch).toHaveBeenCalledTimes(1); - expect(fetch).toHaveBeenCalledWith( - `${mdsURL}?data=True&_guid_type=discovery_metadata&limit=2`, - ); - }); - it('should throw an error on fetch failure', async () => { - checkForFetchError(getSomeStudiesFromMDS); - }); - }); }); }); diff --git a/src/Discovery/index.tsx b/src/Discovery/index.tsx index 218bad3cfe..d41354ba59 100644 --- a/src/Discovery/index.tsx +++ b/src/Discovery/index.tsx @@ -9,7 +9,7 @@ import { } from '../localconf'; import isEnabled from '../helpers/featureFlags'; import loadStudiesFromAggMDS from './Utils/aggMDSUtils/aggMDSUtils'; -import { loadStudiesFromMDS, getSomeStudiesFromMDS } from './Utils/MDSUtils/MDSUtils'; +import loadStudiesFromMDS from './Utils/MDSUtils/MDSUtils'; const populateStudiesWithConfigInfo = (studies, config) => { if (!config.studies) { @@ -91,18 +91,18 @@ const DiscoveryWithMDSBackend: React.FC<{ const studyRegistrationValidationField = studyRegistrationConfig?.studyRegistrationValidationField; async function fetchRawStudies() { let loadStudiesFunction: Function; - let loadStudiesParameters: any; + let loadStudiesParameters: any[] = []; if (isEnabled('discoveryUseAggMDS')) { loadStudiesFunction = loadStudiesFromAggMDS; - loadStudiesParameters = numberOfBatchesLoaded === 1 + loadStudiesParameters.push(numberOfBatchesLoaded === 1 ? numberOfStudiesForSmallerBatch - : numberOfStudiesForAllStudiesBatch; + : numberOfStudiesForAllStudiesBatch); } else { - loadStudiesFunction = getSomeStudiesFromMDS; - loadStudiesParameters = props.config?.features?.guidType; + loadStudiesFunction = loadStudiesFromMDS; + loadStudiesParameters = [props.config?.features?.guidType, 10, false]; } const rawStudiesRegistered = await loadStudiesFunction( - loadStudiesParameters, + ...loadStudiesParameters, ); let rawStudiesUnregistered: any[] = []; @@ -110,9 +110,10 @@ const DiscoveryWithMDSBackend: React.FC<{ // Load fewer raw studies if on the first studies batch // Otherwise load them all rawStudiesUnregistered = numberOfBatchesLoaded === 1 - ? (rawStudiesUnregistered = await getSomeStudiesFromMDS( + ? (rawStudiesUnregistered = await loadStudiesFromMDS( 'unregistered_discovery_metadata', numberOfStudiesForSmallerBatch, + false, )) : await loadStudiesFromMDS('unregistered_discovery_metadata'); rawStudiesUnregistered = rawStudiesUnregistered.map( From f16e30e284515157f0300c6ab8596e0d5eee76ed Mon Sep 17 00:00:00 2001 From: Jarvis Raymond Date: Fri, 4 Oct 2024 11:28:57 -0500 Subject: [PATCH 22/25] feat(discoveryEnhancedLoading): changed variable name for clarity --- src/Discovery/Utils/MDSUtils/MDSUtils.jsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Discovery/Utils/MDSUtils/MDSUtils.jsx b/src/Discovery/Utils/MDSUtils/MDSUtils.jsx index 57ddefab08..33be904487 100644 --- a/src/Discovery/Utils/MDSUtils/MDSUtils.jsx +++ b/src/Discovery/Utils/MDSUtils/MDSUtils.jsx @@ -2,14 +2,14 @@ import { mdsURL, studyRegistrationConfig } from '../../../localconf'; const STUDY_DATA_FIELD = 'gen3_discovery'; // field in the MDS response that contains the study data -const loadStudiesFromMDS = async (guidType = 'discovery_metadata', LIMIT= 2000, loadAllMetadata = true ) => { +const loadStudiesFromMDS = async (guidType = 'discovery_metadata', fetchSize= 2000, loadAllMetadata = true ) => { try { let allStudies = []; let offset = 0; - // request up to LIMIT studies from MDS at a time. + // request up to fetchSize number of studies from MDS at a time. let shouldContinue = true; while (shouldContinue) { - const url =`${mdsURL}?data=True&_guid_type=${guidType}&limit=${LIMIT}&offset=${offset}`; + const url =`${mdsURL}?data=True&_guid_type=${guidType}&limit=${fetchSize}&offset=${offset}`; // It's OK to disable no-await-in-loop rule here -- it's telling us to refactor // using Promise.all() so that we can fire multiple requests at one. // But we WANT to delay sending the next request to MDS until we know we need it. @@ -29,12 +29,12 @@ const loadStudiesFromMDS = async (guidType = 'discovery_metadata', LIMIT= 2000, return study; }); allStudies = allStudies.concat(studies); - const noMoreStudiesToLoad = studies.length <= LIMIT ; + const noMoreStudiesToLoad = studies.length < fetchSize ; if (noMoreStudiesToLoad || loadAllMetadata === false) { shouldContinue = false; return allStudies; } - offset += LIMIT; + offset += fetchSize; } return allStudies; } catch (err) { From 2f8b7fac8bbce4519843e08c20008de9efa2c542 Mon Sep 17 00:00:00 2001 From: Jarvis Raymond Date: Fri, 4 Oct 2024 11:30:44 -0500 Subject: [PATCH 23/25] feat(discoveryEnhancedLoading): reverted unintentionally changed files --- data/dictionary.json | 11444 ++- data/schema.json | 165907 +++++++++++++++++++++++++++++++++++----- 2 files changed, 157336 insertions(+), 20015 deletions(-) diff --git a/data/dictionary.json b/data/dictionary.json index 67724bdc3e..61271e9483 100644 --- a/data/dictionary.json +++ b/data/dictionary.json @@ -164,15 +164,17 @@ "description": "The current state of the object.\n" } }, + "state_comment": { + "description": "Optional comment about why the file is in the current state, mainly for invalid state.\n", + "type": "string" + }, "submitter_id": { - "description": "A project-specific identifier for a node. This property is the calling card/nickname/alias for a unit of submission. It can be used in place of the UUID for identifying or recalling a node.\n", + "description": "The file ID assigned by the submitter.", "type": [ - "string" + "string", + "null" ] }, - "type": { - "type": "string" - }, "updated_datetime": { "oneOf": [ { @@ -261,29 +263,6 @@ }, "type": "object" }, - "foreign_key_project": { - "additionalProperties": true, - "properties": { - "code": { - "type": "string" - }, - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - } - }, - "type": "object" - }, "id": "_definitions", "md5sum": { "pattern": "^[a-f0-9]{32}$", @@ -317,7 +296,14 @@ "WARN" ], "term": { - "$ref": "_terms.yaml#/qc_metric_state" + "description": "State classification given by FASTQC for the metric. Metric specific details about the states are available on their website.\n", + "termDef": { + "cde_id": null, + "cde_version": null, + "source": "FastQC", + "term": "QC Metric State", + "term_url": "http://www.bioinformatics.babraham.ac.uk/projects/fastqc/Help/3%20Analysis%20Modules/" + } } }, "release_state": { @@ -371,39 +357,10 @@ } }, "to_many": { - "anyOf": [ - { - "items": { - "$ref": "#/foreign_key", - "minItems": 1 - }, - "type": "array" - }, - { - "$ref": "#/foreign_key" - } - ] - }, - "to_many_project": { - "anyOf": [ - { - "items": { - "$ref": "#/foreign_key_project", - "minItems": 1 - }, - "type": "array" - }, - { - "$ref": "#/foreign_key_project" - } - ] - }, - "to_one": { "anyOf": [ { "items": { "additionalProperties": true, - "maxItems": 1, "minItems": 1, "properties": { "id": { @@ -453,7 +410,7 @@ } ] }, - "to_one_project": { + "to_one": { "anyOf": [ { "items": { @@ -461,9 +418,6 @@ "maxItems": 1, "minItems": 1, "properties": { - "code": { - "type": "string" - }, "id": { "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", "term": { @@ -477,6 +431,9 @@ } }, "type": "string" + }, + "submitter_id": { + "type": "string" } }, "type": "object" @@ -486,9 +443,6 @@ { "additionalProperties": true, "properties": { - "code": { - "type": "string" - }, "id": { "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", "term": { @@ -502,6 +456,9 @@ } }, "type": "string" + }, + "submitter_id": { + "type": "string" } }, "type": "object" @@ -610,26 +567,142 @@ } }, "workflow_properties": { - "$ref": "#/ubiquitous_properties", + "created_datetime": { + "oneOf": [ + { + "format": "date-time", + "type": "string" + }, + { + "type": "null" + } + ], + "term": { + "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" + } + }, + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "systemAlias": "node_id", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "project_id": { + "term": { + "description": "Unique ID for any specific defined piece of work that is undertaken or attempted to meet a single requirement.\n" + }, + "type": "string" + }, + "state": { + "default": "validated", + "downloadable": [ + "uploaded", + "md5summed", + "validating", + "validated", + "error", + "invalid", + "released" + ], + "oneOf": [ + { + "enum": [ + "uploading", + "uploaded", + "md5summing", + "md5summed", + "validating", + "error", + "invalid", + "suppressed", + "redacted", + "live" + ] + }, + { + "enum": [ + "validated", + "submitted", + "released" + ] + } + ], + "public": [ + "live" + ], + "term": { + "description": "The current state of the object.\n" + } + }, + "submitter_id": { + "description": "The file ID assigned by the submitter.", + "type": [ + "string", + "null" + ] + }, + "updated_datetime": { + "oneOf": [ + { + "format": "date-time", + "type": "string" + }, + { + "type": "null" + } + ], + "term": { + "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" + } + }, "workflow_end_datetime": { - "$ref": "#/datetime" + "oneOf": [ + { + "format": "date-time", + "type": "string" + }, + { + "type": "null" + } + ], + "term": { + "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" + } }, "workflow_link": { "description": "Link to Github hash for the CWL workflow used.", "type": "string" }, "workflow_start_datetime": { - "$ref": "#/datetime" + "oneOf": [ + { + "format": "date-time", + "type": "string" + }, + { + "type": "null" + } + ], + "term": { + "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" + } }, "workflow_version": { - "description": "Major version for a HEAL workflow.", + "description": "Major version for a GDC workflow.", "type": "string" } } }, "_settings": { - "_dict_commit": "b7d654c227b12d91534d40dcec91f977d71d3eef", - "_dict_version": "1.1.0", "enable_case_cache": false }, "_terms": { @@ -710,7 +783,7 @@ } }, "ajcc_clinical_stage": { - "description": "Stage group determined from clinical information on the tumor (T), regional node (N) and metastases (M) and by grouping subjects with similar prognosis for cancer.\n", + "description": "Stage group determined from clinical information on the tumor (T), regional node (N) and metastases (M) and by grouping cases with similar prognosis for cancer.\n", "termDef": { "cde_id": 3440332, "cde_version": 1, @@ -1357,16 +1430,6 @@ "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=649&version=4.1" } }, - "hemoglobin": { - "description": "The value (g/dL) for a medical procedure that involves testing a sample of blood for hemoglobin, red respiratory protein of erythrocytes, to help determine a diagnosis, plan treatment, check to see if treatment is working, or monitor the disease over time.\n", - "termDef": { - "cde_id": 2190, - "cde_version": 3, - "source": "caDSR", - "term": "Laboratory Procedure Hemoglobin Result Specified Value", - "term_url": "https://cdebrowser.nci.nih.gov/cdebrowserClient/cdeBrowser.html#/search?publicId=2190&version=3.0" - } - }, "her2_erbb2_percent_positive_ihc": { "description": "Classification to represent the number of positive HER2/ERBB2 cells in a specimen or sample.\n", "termDef": { @@ -1794,16 +1857,6 @@ "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=64181&version=3.0" } }, - "platelet_count": { - "description": "The absolute peripheral platelet count (in 1000/mm3).\n", - "termDef": { - "cde_id": 58304, - "cde_version": 4, - "source": "caDSR", - "term": "Laboratory Procedure Platelet Result Specified Value", - "term_url": "https://cdebrowser.nci.nih.gov/cdebrowserClient/cdeBrowser.html#/search?publicId=58304&version=4.0" - } - }, "platform": { "description": "Name of the platform used to obtain data.\n" }, @@ -1838,12 +1891,12 @@ } }, "primary_diagnosis": { - "description": "Disease definition term (cancer, kidney, cardiovascular/cerebrovascular, etc) by ICD-9 CM Coding Book (9th Revision, 3rd Edition)\n", + "description": "Text term for the structural pattern of cancer cells used to define a microscopic diagnosis.\n", "termDef": { "cde_id": 3081934, "cde_version": 3, "source": "caDSR", - "term": "ICD-9 CM Coding Book 9th Revision 3rd Edition", + "term": "Neoplasm Histologic Type Name", "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3081934&version=3.0" } }, @@ -1927,7 +1980,7 @@ "description": "The length of the reads.\n" }, "relationship_age_at_diagnosis": { - "description": "The age (in years) when the patient's relative was first diagnosed. If the age is greater than 89 years, see 'relationship_age_at_diagnosis_gt89'.\n", + "description": "The age (in years) when the patient's relative was first diagnosed.\n", "termDef": { "cde_id": 5300571, "cde_version": 1, @@ -1936,16 +1989,6 @@ "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=5300571&version=1.0" } }, - "relationship_age_at_diagnosis_gt89": { - "description": "Indicate if the the age (in years) when the patient's relative was first diagnosed is greater than 89 years.\n", - "termDef": { - "cde_id": 5300571, - "cde_version": 1, - "source": "caDSR", - "term": "Relative Diagnosis Age Value Greater than 89", - "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=5300571&version=1.0" - } - }, "relationship_type": { "description": "The subgroup that describes the state of connectedness between members of the unit of society organized around kinship ties.\n", "termDef": { @@ -1995,16 +2038,6 @@ "sequencing_center": { "description": "Name of the center that provided the sequence files.\n" }, - "sex": { - "description": "The assemblage of physical properties or qualities by which male is distinguished from female; the physical difference between male and female; the distinguishing peculiarity of male or female.\n", - "termDef": { - "cde_id": 2200602, - "cde_version": 3, - "source": "NCI Thesaurus", - "term": "Self Reported Person Sex Text Type", - "term_url": "https://cdebrowser.nci.nih.gov/cdebrowserClient/cdeBrowser.html#/search?publicId=2200602&version=3.0" - } - }, "shortest_dimension": { "description": "Numeric value that represents the shortest dimension of the sample, measured in millimeters.\n", "termDef": { @@ -2284,16 +2317,6 @@ "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=5&version=5.0" } }, - "wbc": { - "description": "The absolute peripheral white blood cell count (in 1000/uL).\n", - "termDef": { - "cde_id": 58312, - "cde_version": 3, - "source": "caDSR", - "term": "Laboratory Procedure Leukocyte Result Specified Value", - "term_url": "https://cdebrowser.nci.nih.gov/cdebrowserClient/cdeBrowser.html#/search?publicId=58312&version=3.0" - } - }, "weight": { "description": "The weight of the patient measured in kilograms.\n", "termDef": { @@ -2328,7 +2351,7 @@ } }, "year_of_death": { - "description": "Numeric value to represent the year of the death of an individual. 9999=Missing/Alive\n", + "description": "Numeric value to represent the year of the death of an individual.\n", "termDef": { "cde_id": 2897030, "cde_version": 1, @@ -2358,32 +2381,241 @@ } } }, - "clinical_trial_file": { + "acknowledgement": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, - "category": "data_file", - "description": "The restricted access file containing patient level data associated with a clinical trial.\n", - "id": "clinical_trial_file", + "category": "administrative", + "description": "Acknowledgement of an individual involved in a project.", + "id": "acknowledgement", "links": [ { - "backref": "clinical_trial_files", - "label": "data_from", - "multiplicity": "many_to_one", - "name": "core_metadata_collections", + "backref": "acknowledgements", + "label": "contribute_to", + "multiplicity": "many_to_many", + "name": "projects", "required": true, - "target_type": "core_metadata_collection" + "target_type": "project" } ], - "namespace": "https://data.heal.org", + "namespace": "http://gdc.nci.nih.gov", "program": "*", "project": "*", "properties": { - "core_metadata_collections": { + "acknowledgee": { + "description": "The indvidiual or group being acknowledged by the project.", + "type": "string" + }, + "created_datetime": { + "oneOf": [ + { + "format": "date-time", + "type": "string" + }, + { + "type": "null" + } + ], + "term": { + "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" + } + }, + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "systemAlias": "node_id", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "project_id": { + "type": "string" + }, + "projects": { + "anyOf": [ + { + "items": { + "additionalProperties": true, + "minItems": 1, + "properties": { + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "submitter_id": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + { + "additionalProperties": true, + "properties": { + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "submitter_id": { + "type": "string" + } + }, + "type": "object" + } + ] + }, + "state": { + "default": "validated", + "downloadable": [ + "uploaded", + "md5summed", + "validating", + "validated", + "error", + "invalid", + "released" + ], + "oneOf": [ + { + "enum": [ + "uploading", + "uploaded", + "md5summing", + "md5summed", + "validating", + "error", + "invalid", + "suppressed", + "redacted", + "live" + ] + }, + { + "enum": [ + "validated", + "submitted", + "released" + ] + } + ], + "public": [ + "live" + ], + "term": { + "description": "The current state of the object.\n" + } + }, + "submitter_id": { + "type": [ + "string", + "null" + ] + }, + "type": { + "enum": [ + "acknowledgement" + ] + }, + "updated_datetime": { + "oneOf": [ + { + "format": "date-time", + "type": "string" + }, + { + "type": "null" + } + ], + "term": { + "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" + } + } + }, + "required": [ + "submitter_id", + "projects" + ], + "submittable": true, + "systemProperties": [ + "id", + "project_id", + "state", + "created_datetime", + "updated_datetime" + ], + "title": "Acknowledgement", + "type": "object", + "uniqueKeys": [ + [ + "id" + ], + [ + "project_id", + "submitter_id" + ] + ], + "validators": null + }, + "aligned_reads_index": { + "$schema": "http://json-schema.org/draft-04/schema#", + "additionalProperties": false, + "category": "index_file", + "description": "Data file containing the index for a set of aligned reads.", + "id": "aligned_reads_index", + "links": [ + { + "backref": "aligned_reads_indexes", + "label": "derived_from", + "multiplicity": "one_to_one", + "name": "submitted_aligned_reads_files", + "required": true, + "target_type": "submitted_aligned_reads" + }, + { + "backref": "aligned_reads_indexes", + "label": "data_from", + "multiplicity": "many_to_many", + "name": "core_metadata_collections", + "required": false, + "target_type": "core_metadata_collection" + } + ], + "namespace": "http://gdc.nci.nih.gov", + "program": "*", + "project": "*", + "properties": { + "core_metadata_collections": { "anyOf": [ { "items": { "additionalProperties": true, - "maxItems": 1, "minItems": 1, "properties": { "id": { @@ -2448,22 +2680,30 @@ } }, "data_category": { + "enum": [ + "Sequencing Data", + "Sequencing Reads", + "Raw Sequencing Data" + ], "term": { "description": "Broad categorization of the contents of the data file.\n" - }, - "type": "string" + } }, "data_format": { + "enum": [ + "BAI" + ], "term": { "description": "Format of the data files.\n" - }, - "type": "string" + } }, "data_type": { + "enum": [ + "Aligned Reads Index" + ], "term": { "description": "Specific content type of the data file.\n" - }, - "type": "string" + } }, "error_type": { "enum": [ @@ -2578,14 +2818,76 @@ "description": "The current state of the object.\n" } }, + "state_comment": { + "description": "Optional comment about why the file is in the current state, mainly for invalid state.\n", + "type": "string" + }, + "submitted_aligned_reads_files": { + "anyOf": [ + { + "items": { + "additionalProperties": true, + "maxItems": 1, + "minItems": 1, + "properties": { + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "submitter_id": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + { + "additionalProperties": true, + "properties": { + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "submitter_id": { + "type": "string" + } + }, + "type": "object" + } + ] + }, "submitter_id": { - "description": "A project-specific identifier for a node. This property is the calling card/nickname/alias for a unit of submission. It can be used in place of the UUID for identifying or recalling a node.\n", + "description": "The file ID assigned by the submitter.", "type": [ - "string" + "string", + "null" ] }, "type": { - "type": "string" + "enum": [ + "aligned_reads_index" + ] }, "updated_datetime": { "oneOf": [ @@ -2603,14 +2905,14 @@ } }, "required": [ - "type", "submitter_id", "file_name", "file_size", - "data_format", "md5sum", "data_category", - "data_type" + "data_type", + "data_format", + "submitted_aligned_reads_files" ], "submittable": true, "systemProperties": [ @@ -2618,9 +2920,11 @@ "project_id", "created_datetime", "updated_datetime", - "state" + "state", + "file_state", + "error_type" ], - "title": "Clinical Trial File", + "title": "Aligned Reads Index", "type": "object", "uniqueKeys": [ [ @@ -2633,104 +2937,107 @@ ], "validators": null }, - "core_metadata_collection": { + "aliquot": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, - "category": "administrative", - "description": "Structured description of a collection of several datasets\n", - "id": "core_metadata_collection", + "category": "biospecimen", + "constraints": null, + "description": "Pertaining to a portion of the whole; any one of two or more samples of something, of the same volume or weight.\n", + "id": "aliquot", "links": [ { - "backref": "core_metadata_collections", - "label": "data_from", - "multiplicity": "many_to_one", - "name": "projects", + "backref": "aliquots", + "label": "derived_from", + "multiplicity": "many_to_many", + "name": "samples", "required": true, - "target_type": "project" + "target_type": "sample" } ], - "namespace": "https://data.heal.org", "program": "*", "project": "*", "properties": { - "accepts_healthy_volunteers": { - "description": "Indication that participants who do not have a disease or condition, or related conditions or symptoms, under study in the clinical study are permitted to participate in the clinical study.\n", - "enum": [ - "Yes", - "No" - ] - }, - "actual_enrollment": { - "description": "The number of participants enrolled in the study\n", - "type": "string" - }, - "arm": { - "description": "Describes an expected sequence of events for one of the participants of a study. E.g. Exposure to drug A, wash-out, exposure to drug B, wash-out, follow-up.\n", - "type": "string" - }, - "arm_description": { - "description": "A succinct description of the path through the study that would be followed by a subject adhering to this arm.\n", - "type": "string" - }, - "arm_name": { - "description": "Unique, human-readable label for this arm of the study.\n", - "enum": [ - "Placebo", - "Remdesivir" - ] - }, - "arm_type": { - "description": "Categorization of study arm, e.g. experimental, active comparator, placebo comparater.\n", - "enum": [ - "Experimental", - "Active Comparator", - "Placebo Comparator", - "Sham Comparator", - "No Intervention" - ] - }, - "brief_summary": { - "description": "A short description of the clinical study, including a brief statement of the clinical study's hypothesis, written in language intended for the lay public.\n", - "type": "string" - }, - "brief_title": { - "description": "A short title of the clinical study written in language intended for the lay public. The title should include, where possible, information on the participants, condition being evaluated, and intervention(s) studied.\n", - "type": "string" + "aliquot_quantity": { + "term": { + "description": "The quantity in micrograms (ug) of the aliquot(s) derived from the analyte(s) shipped for sequencing and characterization.\n", + "termDef": { + "cde_id": null, + "cde_version": null, + "source": null, + "term": "Biospecimen Aliquot Quantity", + "term_url": null + } + }, + "type": "number" }, - "category": { - "description": "The nature of the investigation or investigational use for which clinical study information is being submitted.\n", - "enum": [ - "Interventional", - "Observational", - "Expanded Access" - ] + "aliquot_volume": { + "term": { + "description": "The volume in microliters (ml) of the aliquot(s) derived from the analyte(s) shipped for sequencing and characterization.\n", + "termDef": { + "cde_id": null, + "cde_version": null, + "source": null, + "term": "Biospecimen Aliquot Volume", + "term_url": null + } + }, + "type": "number" }, - "clinical_trial_website": { - "description": "Any originating or affiliated website for the respective clinical trial.\n", - "type": "string" + "amount": { + "term": { + "description": "Weight in grams or volume in mL.\n" + }, + "type": "number" }, - "collaborators": { - "description": "Other organizations (if any) providing support. Support may include funding, design, implementation, data analysis or reporting. The responsible party is responsible for confirming all collaborators before listing them.\n", + "analyte_type": { + "term": { + "description": "Text term that represents the kind of molecular specimen analyte.\n", + "termDef": { + "cde_id": 2513915, + "cde_version": 2, + "source": "caDSR", + "term": "Molecular Specimen Type Text Name", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2513915&version=2.0" + } + }, "type": "string" }, - "condition": { - "description": "The name(s) of the disease(s) or condition(s) studied in the clinical study, or the focus of the clinical study. Use, if available, appropriate descriptors from NLM's Medical Subject Headings (MeSH)-controlled vocabulary thesaurus or terms from another vocabulary, such as the Systematized Nomenclature of Medicine—Clinical Terms (SNOMED CT), that has been mapped to MeSH within the Unified Medical Language System (UMLS) Metathesaurus.\n", + "analyte_type_id": { "enum": [ - "COVID-19", - "Other" - ] - }, - "contact": { - "description": "Contact details to assist a user in learning more about or engaging with the study.\n", - "type": "string" - }, - "contributor": { - "description": "An entity responsible for making contributions to the resource. Examples of a Contributor include a person, an organization, or a service. Typically, the name of a Contributor should be used to indicate the entity.\n", - "type": "string" + "D", + "E", + "G", + "H", + "R", + "S", + "T", + "W", + "X", + "Y" + ], + "term": { + "description": "A single letter code used to identify a type of molecular analyte.\n", + "termDef": { + "cde_id": 5432508, + "cde_version": 1, + "source": "caDSR", + "term": "Molecular Analyte Identification Code", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=5432508&version=1.0" + } + } }, - "coverage": { - "description": "The spatial or temporal topic of the resource, the spatial applicability of the resource, or the jurisdiction under which the resource is relevant. Spatial topic and spatial applicability may be a named place or a location specified by its geographic coordinates. Temporal topic may be a named period, date, or date range. A jurisdiction may be a named administrative entity or a geographic place to which the resource applies. Recommended best practice is to use a controlled vocabulary such as the Thesaurus of Geographic Names [TGN] (http://www.getty.edu/research/tools/vocabulary/tgn/index.html). Where appropriate, named places or time periods can be used in preference to numeric identifiers such as sets of coordinates or date ranges.\n", - "type": "string" + "concentration": { + "term": { + "description": "Numeric value that represents the concentration of an analyte or aliquot extracted from the sample or sample portion, measured in milligrams per milliliter.\n", + "termDef": { + "cde_id": 5432594, + "cde_version": 1, + "source": "caDSR", + "term": "Biospecimen Analyte or Aliquot Extracted Concentration Milligram per Milliliter Value", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=5432594&version=1.0" + } + }, + "type": "number" }, "created_datetime": { "oneOf": [ @@ -2746,87 +3053,6 @@ "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" } }, - "creator": { - "description": "An organization that initiates the investigation and is legally responsible for the study.\n", - "type": "string" - }, - "data_availability_date": { - "description": "The date of availability for the controlled access patient-level data. This date indicates when users may request access to this data.\n", - "type": "string" - }, - "data_available": { - "description": "A description of the type of controlled-acccess data that can be requested.\n", - "enum": [ - "Patient-Level Data", - "Other" - ] - }, - "data_available_for_request": { - "description": "Whether users may request access to this data.\n", - "type": "boolean" - }, - "data_category": { - "term": { - "description": "Broad categorization of the contents of the data file.\n" - }, - "type": "string" - }, - "data_format": { - "term": { - "description": "Format of the data files.\n" - }, - "type": "string" - }, - "data_type": { - "term": { - "description": "Specific content type of the data file.\n" - }, - "type": "string" - }, - "description": { - "description": "Extended description of the protocol, including more technical information, if desired. Do not include the entire protocol; do not duplicate information recorded in other data elements, such as Eligibility Criteria or outcome measures.\n", - "type": "string" - }, - "eligibility_criteria": { - "description": "A limited list of criteria for selection of participants in the clinical study, provided in terms of inclusion and exclusion criteria and suitable for assisting potential participants in identifying clinical studies of interest. Use a bulleted list for each criterion below the headers \"Inclusion Criteria\" and \"Exclusion Criteria\".\n", - "type": "string" - }, - "enrollment": { - "description": "Reference to a Group that defines the criteria for and quantity of subjects participating in the study. E.g. \" 200 female Europeans between the ages of 20 and 45 with early onset diabetes\".\n", - "type": "string" - }, - "fda_regulated_device_product": { - "description": "Indication that a clinical study is studying a device product subject to section 510(k), 515, or 520(m) of the Federal Food, Drug, and Cosmetic Act.\n", - "enum": [ - "Yes", - "No" - ] - }, - "fda_regulated_drug_product": { - "description": "Indication that a clinical study is studying a drug product (including a biological product) subject to section 505 of the Federal Food, Drug, and Cosmetic Act or to section 351 of the Public Health Service Act.\n", - "enum": [ - "Yes", - "No" - ] - }, - "first_posted_date": { - "description": "The date on which the study record was first available on ClinicalTrials.gov.\n", - "type": "string" - }, - "focus": { - "description": "Specify the codes for medications, devices and other interventions.\n", - "enum": [ - "Placebo", - "Remdesivir" - ] - }, - "has_data_monitoring_committee": { - "description": "Indicate whether a data monitoring committee has been appointed for this study. The data monitoring committee (board) is a group of independent scientists who are appointed to monitor the safety and scientific integrity of a human research intervention, and to make recommendations to the sponsor regarding the stopping of the trial for efficacy, for harms or for futility. The composition of the committee is dependent upon the scientific skills and knowledge required for monitoring the particular study.\n", - "enum": [ - "Yes", - "No" - ] - }, "id": { "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", "systemAlias": "node_id", @@ -2842,72 +3068,13 @@ }, "type": "string" }, - "intervention_type": { - "description": "For each intervention studied in the clinical study, the general type of intervention.\n", - "enum": [ - "Drug", - "Device", - "Biological/Vaccine", - "Procedure/Surgery", - "Radiation", - "Behavioral", - "Genetic", - "Dietary Supplement", - "Combination Product", - "Diagnostic Test", - "Other" - ] - }, - "ipd_sharing_statement": { - "description": "Indicate whether there is a plan to make individual participant data (IPD) collected in this study, including data dictionaries, available to other researchers (typically after the end of the study).\n", - "enum": [ - "Yes", - "No", - "Undecided" - ] - }, - "language": { - "description": "A language of the resource. Recommended best practice is to use a controlled vocabulary such as RFC 4646 (http://www.ietf.org/rfc/rfc4646.txt).\n", - "type": "string" - }, - "last_update_posted_date": { - "description": "The most recent date on which changes to a study record were made available on ClinicalTrials.gov.\n", - "type": "string" - }, - "location": { - "description": "Indicates a country, state or other region where the study is taking place.\n", - "items": { - "type": "string" - }, - "type": "array" - }, - "locations_removed": { - "description": "Indicates a country, state or other region that has been removed from the study.\n", - "type": "string" - }, - "nct_number": { - "description": "The organization's unique protocol identification number assigned to the clinical study.\n", - "type": "string" - }, - "original_estimated_enrollment": { - "description": "Original Estimated Enrollment\n", - "type": "string" - }, - "primary_completion_date": { - "description": "The date that the final participant was examined or received an intervention for the purposes of final collection of data for the primary outcome, whether the clinical study concluded according to the pre-specified protocol or was terminated. In the case of clinical studies with more than one primary outcome measure with different completion dates, this term refers to the date on which data collection is completed for all of the primary outcomes.\n", - "type": "string" - }, - "principle_investigator": { - "description": "A researcher in a study who oversees multiple aspects of the study, such as concept development, protocol writing, protocol submission for IRB approval, participant recruitment, informed consent, data collection, analysis, interpretation and presentation.\n", - "type": "string" - }, "project_id": { "term": { "description": "Unique ID for any specific defined piece of work that is undertaken or attempted to meet a single requirement.\n" }, "type": "string" }, - "projects": { + "samples": { "anyOf": [ { "items": { @@ -2915,9 +3082,6 @@ "maxItems": 1, "minItems": 1, "properties": { - "code": { - "type": "string" - }, "id": { "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", "term": { @@ -2931,6 +3095,9 @@ } }, "type": "string" + }, + "submitter_id": { + "type": "string" } }, "type": "object" @@ -2940,9 +3107,6 @@ { "additionalProperties": true, "properties": { - "code": { - "type": "string" - }, "id": { "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", "term": { @@ -2956,55 +3120,19 @@ } }, "type": "string" + }, + "submitter_id": { + "type": "string" } }, "type": "object" } ] }, - "prs_account": { - "description": "The account in the Protocol Registration and Results System that was used to register the clinical studu and to submit results information for the registered study.\n", - "type": "string" - }, - "publications": { - "description": "Citations to publications related to the protocol: background and/or results. Provide either the PubMed Unique Identifier (PMID) of an article or enter the full bibliographic citation.\n", - "type": "string" - }, - "publisher": { - "description": "An entity responsible for making the resource available. Examples of a Publisher include a person, an organization, or a service. Typically, the name of a Publisher should be used to indicate the entity.\n", - "type": "string" - }, - "recruitment_status": { - "description": "The recruitment status for the clinical study as a whole, based upon the status of the individual sites. If at least one facility in a multi-site clinical study has an Individual Site Status of \"Recruiting,\" then the Overall Recruitment Status for the study must be \"Recruiting.\"\n", - "enum": [ - "Not yet recruiting", - "Recruiting", - "Enrolling by invitation", - "Active, not recruiting", - "Completed", - "Suspended", - "Terminated", - "Withdrawn" - ] - }, - "responsible_party": { - "description": "An indication of whether the responsible party is the sponsor, the sponsor-investigator, or a principal investigator designated by the sponsor to be the responsible party.\n", - "enum": [ - "Sponsor", - "Principle Investigator", - "Sponsor-Investigator" - ] - }, - "rights": { - "description": "Information about rights held in and over the resource. Typically, rights information includes a statement about various property rights associated with the resource, including intellectual property rights.\n", - "type": "string" - }, - "secondary_id": { - "description": "An identifier(s) (ID), if any, other than the organization's Unique Protocol Identification Number or the NCT number that is assigned to the clinical study. This includes any unique clinical study identifiers assigned by other publicly available clinical trial registries. If the clinical study is funded in whole or in part by a U.S. Federal Government agency, the complete grant or contract number must be submitted as a Secondary ID.\n", - "type": "string" - }, - "source": { - "description": "A related resource from which the described resource is derived. The described resource may be derived from the related resource in whole or in part. Recommended best practice is to identify the related resource by means of a string conforming to a formal identification system.\n", + "source_center": { + "term": { + "description": "Name of the center that provided the item.\n" + }, "type": "string" }, "state": { @@ -3048,87 +3176,13 @@ "description": "The current state of the object.\n" } }, - "study_completion_date": { - "description": "The date the final participant was examined or received an intervention for purposes of final collection of data for the primary and secondary outcome measures and adverse events (for example, last participant’s last visit), whether the clinical study concluded according to the pre-specified protocol or was terminated.\n", - "type": "string" - }, - "study_design_allocation": { - "description": "The method by which participants are assigned to arms in a clinical trial.\n", - "enum": [ - "N/A", - "Randomized", - "Nonrandomized" - ] - }, - "study_design_intervention_model": { - "description": "The strategy for assigning interventions to participants.\n", - "enum": [ - "Single Group", - "Parallel", - "Crossover", - "Factorial", - "Sequential" - ] - }, - "study_design_masking": { - "description": "The party or parties involved in the clinical trial who are prevented from having knowledge of the interventions assigned to individual participants.\n", - "enum": [ - "Participant", - "Care Provider", - "Investigator", - "Outcomes Assessor", - "No Masking" - ] - }, - "study_design_primary_purpose": { - "description": "The main objective of the intervention(s) being evaluated by the clinical trial.\n", - "enum": [ - "Treatment", - "Prevention", - "Diagnostic", - "Supportive Care", - "Screening", - "Health Services", - "Basic Science", - "Device Feasibility", - "Other" - ] - }, - "study_phase": { - "description": "For a clinical trial of a drug product (including a biological product), the numerical phase of such clinical trial, consistent with terminology in 21 CFR 312.21 and in 21 CFR 312.85 for phase 4 studies.\n", - "enum": [ - "N/A", - "early-phase-1", - "phase-1", - "phase-1-phase-2", - "phase-2", - "phase-2-phase-3", - "phase-3", - "phase-4" - ] - }, - "study_start_date": { - "description": "The estimated date on which the clinical study will be open for recruitment of participants, or the actual date on which the first participant was enrolled.\n", - "type": "string" - }, - "subject": { - "description": "The topic of the resource. Typically, the subject will be represented using keywords, key phrases, or classification codes. Recommended best practice is to use a controlled vocabulary.\n", - "type": "string" - }, - "submitted_date": { - "description": "The date on which the study sponsor or investigator first submitted a study record to ClinicalTrials.gov.\n", - "type": "string" - }, "submitter_id": { - "description": "A project-specific identifier for a node. This property is the calling card/nickname/alias for a unit of submission. It can be used in place of the UUID for identifying or recalling a node.\n", + "description": "The legacy barcode used before prior to the use UUIDs. For TCGA this is bcraliquotbarcode.\n", "type": [ - "string" + "string", + "null" ] }, - "title": { - "description": "The title of the clinical study, corresponding to the title of the protocol.\n", - "type": "string" - }, "type": { "type": "string" }, @@ -3145,23 +3199,11 @@ "term": { "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" } - }, - "us_product": { - "description": "Whether any drug product (including a biological product) or device product studied in the clinical study is manufactured in the United States or one of its territories and exported for study in a clinical study in another country. Required if U.S. FDA-regulated Drug and/or U.S. FDA-regulated Device is \"Yes,\" U.S. FDA IND or IDE is \"No\", and Facility Information does not include at least one U.S. location.\n", - "enum": [ - "Yes", - "No" - ] - }, - "verification_date": { - "description": "The date on which the responsible party last verified the clinical study information in the entire ClinicalTrials.gov record for the clinical study, even if no additional or updated information is being submitted.\n", - "type": "string" } }, "required": [ "submitter_id", - "type", - "projects" + "samples" ], "submittable": true, "systemProperties": [ @@ -3171,7 +3213,7 @@ "created_datetime", "updated_datetime" ], - "title": "Core Metadata Collection", + "title": "Aliquot", "type": "object", "uniqueKeys": [ [ @@ -3182,22 +3224,22 @@ "submitter_id" ] ], - "validators": null + "validators": [] }, - "data_release": { + "case": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, - "category": "internal", - "description": "Internal node to store different data releases.\n", - "id": "data_release", + "category": "administrative", + "description": "The collection of all data related to a specific subject in the context of a specific experiment. \n", + "id": "case", "links": [ { - "backref": "data_releases", - "label": "describes", + "backref": "cases", + "label": "member_of", "multiplicity": "many_to_one", - "name": "roots", + "name": "experiments", "required": true, - "target_type": "root" + "target_type": "experiment" } ], "namespace": "http://gdc.nci.nih.gov", @@ -3218,54 +3260,12 @@ "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" } }, - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "systemAlias": "node_id", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "major_version": { - "description": "The number identifying the major version.\n", - "type": "integer" - }, - "minor_version": { - "description": "The number identifying the minor version.\n", - "type": "integer" - }, - "name": { - "description": "String representing release name.\n", + "disease_type": { + "description": "Name of the disease for the case.", "type": "string" }, - "release_date": { - "oneOf": [ - { - "format": "date-time", - "type": "string" - }, - { - "type": "null" - } - ], - "term": { - "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" - } - }, - "released": { - "default": false, - "description": "Indicates if it is the current release.\n", - "type": "boolean" - }, - "roots": { - "anyOf": [ + "experiments": { + "anyOf": [ { "items": { "additionalProperties": true, @@ -3319,11 +3319,81 @@ } ] }, - "type": { - "enum": [ - "data_release" + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "systemAlias": "node_id", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "primary_site": { + "description": "Primary site for the case.", + "type": "string" + }, + "project_id": { + "term": { + "description": "Unique ID for any specific defined piece of work that is undertaken or attempted to meet a single requirement.\n" + }, + "type": "string" + }, + "state": { + "default": "validated", + "downloadable": [ + "uploaded", + "md5summed", + "validating", + "validated", + "error", + "invalid", + "released" + ], + "oneOf": [ + { + "enum": [ + "uploading", + "uploaded", + "md5summing", + "md5summed", + "validating", + "error", + "invalid", + "suppressed", + "redacted", + "live" + ] + }, + { + "enum": [ + "validated", + "submitted", + "released" + ] + } + ], + "public": [ + "live" + ], + "term": { + "description": "The current state of the object.\n" + } + }, + "submitter_id": { + "type": [ + "string", + "null" ] }, + "type": { + "type": "string" + }, "updated_datetime": { "oneOf": [ { @@ -3340,232 +3410,207 @@ } }, "required": [ - "name", - "major_version", - "minor_version", - "type" + "submitter_id", + "experiments" ], - "submittable": false, + "submittable": true, "systemProperties": [ "id", + "project_id", "created_datetime", - "updated_datetime" + "updated_datetime", + "state" ], - "title": "Data Release", + "title": "Case", "type": "object", "uniqueKeys": [ [ "id" + ], + [ + "project_id", + "submitter_id" ] ], "validators": null }, - "metaschema": { + "clinical_test": { "$schema": "http://json-schema.org/draft-04/schema#", - "allOf": [ + "additionalProperties": false, + "category": "clinical", + "description": "Metadata concerning any clinical tests used in relation to a case diagnosis. \n", + "id": "clinical_test", + "links": [ { - "$ref": "http://json-schema.org/draft-04/schema#" + "backref": "clinical_tests", + "label": "performed_for", + "multiplicity": "many_to_one", + "name": "cases", + "required": true, + "target_type": "case" + }, + { + "backref": "clinical_tests", + "label": "relates_to", + "multiplicity": "many_to_many", + "name": "diagnoses", + "required": false, + "target_type": "diagnosis" } ], - "definitions": { - "link": { - "additionalProperties": false, - "properties": { - "backref": { - "$ref": "#/field" - }, - "label": { - "$ref": "#/field" - }, - "multiplicity": { - "enum": [ - "one_to_one", - "one_to_many", - "many_to_one", - "many_to_many" - ], - "type": "string" - }, - "name": { - "$ref": "#/field" - }, - "required": { - "type": "boolean" - }, - "target_type": { - "$ref": "#/field" + "namespace": "http://gdc.nci.nih.gov", + "program": "*", + "project": "*", + "properties": { + "biomarker_name": { + "term": { + "description": "The name of the biomarker being tested for this specimen and set of test results.\n", + "termDef": { + "cde_id": 5473, + "cde_version": 11, + "source": "caDSR", + "term": "Biomarker Name", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=5473&version=2.31" } }, - "required": [ - "name", - "target_type", - "backref", - "label", - "multiplicity", - "required" + "type": "string" + }, + "biomarker_result": { + "enum": [ + "Amplification", + "Gain", + "Loss", + "Normal", + "Other", + "Translocation", + "Not Reported", + "Not Allowed To Collect", + "Pending" ], - "type": "object" + "term": { + "description": "Text term to define the results of genetic testing.\n", + "termDef": { + "cde_id": 3234680, + "cde_version": 1, + "source": "caDSR", + "term": "Laboratory Procedure Genetic Abnormality Test Result Type", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3234680&version=1.0" + } + } }, - "link_subgroup": { - "properties": { - "exclusive": { - "type": "boolean" - }, - "required": { - "type": "boolean" - }, - "subgroup": { + "biomarker_test_method": { + "enum": [ + "Cytogenetics", + "FISH", + "IHC", + "Karyotype", + "NGS", + "Nuclear Staining", + "Other", + "RT-PCR", + "Southern", + "Not Reported", + "Not Allowed To Collect", + "Pending" + ], + "term": { + "description": "Text descriptor of a molecular analysis method used for an individual.\n", + "termDef": { + "cde_id": 3121575, + "cde_version": 1, + "source": "caDSR", + "term": "Disease Detection Molecular Analysis Method Type", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3121575&version=1.0" + } + } + }, + "cases": { + "anyOf": [ + { "items": { - "oneOf": [ - { - "$ref": "#/definitions/link" + "additionalProperties": true, + "maxItems": 1, + "minItems": 1, + "properties": { + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" }, - { - "$ref": "#/definitions/link_subgroup" + "submitter_id": { + "type": "string" } - ] + }, + "type": "object" }, "type": "array" + }, + { + "additionalProperties": true, + "properties": { + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "submitter_id": { + "type": "string" + } + }, + "type": "object" } - }, - "required": [ - "exclusive", - "required", - "subgroup" ] }, - "validator_def": { - "properties": { - "link_to_type": { + "cea_level_preoperative": { + "term": { + "description": "Numeric value of the Carcinoembryonic antigen or CEA at the time before surgery. [Manually- curated]\n", + "termDef": { + "cde_id": 2716510, + "cde_version": 1, + "source": "caDSR", + "term": "Preoperative Carcinoembryonic Antigen Result Value", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2716510&version=1.0" + } + }, + "type": "number" + }, + "created_datetime": { + "oneOf": [ + { + "format": "date-time", "type": "string" }, - "multiplicity": { - "enum": [ - "one_to_one", - "one_to_many", - "many_to_one", - "many_to_many" - ], - "type": "string" + { + "type": "null" } - }, - "required": [ - "property", - "function" ], - "title": "Define a validator to be used on a property", - "type": "object" - } - }, - "field": { - "pattern": "^[_a-zA-Z0-9]*$", - "type": "string" - }, - "id": "metaschema", - "properties": { - "category": { - "$ref": "#/field", - "enum": [ - "administrative", - "analysis", - "biospecimen", - "clinical", - "data", - "data_bundle", - "data_file", - "index_file", - "metadata_file", - "notation", - "qc_bundle", - "TBD" - ] - }, - "links": { - "items": { - "oneOf": [ - { - "$ref": "#/definitions/link" - }, - { - "$ref": "#/definitions/link_subgroup" - } - ] - }, - "title": "Define a link to other GDC entities", - "type": "array" - }, - "properties": { - "additionalProperties": false, - "patternProperties": { - "^[_a-zA-Z0-9]*$": { - "type": "object" - } - }, - "type": "object" - }, - "submittable": { - "type": "boolean" - }, - "system_properties": { - "type": "array" - }, - "unique_keys": { - "items": { - "items": { - "type": "string" - }, - "type": "array" - }, - "type": "array" + "term": { + "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" + } }, - "validators": { - "items": { - "$ref": "#/definitions/validator_def" - }, - "type": [ - "array", - "null" - ] - } - }, - "required": [ - "category", - "program", - "project", - "uniqueKeys", - "links", - "validators", - "systemProperties", - "id" - ], - "title": "GDC JSON schema extension" - }, - "open_access_doc": { - "$schema": "http://json-schema.org/draft-04/schema#", - "additionalProperties": false, - "category": "administrative", - "description": "Open access documents related to a specific clinical trial.", - "id": "open_access_doc", - "links": [ - { - "backref": "open_access_docs", - "label": "data_from", - "multiplicity": "many_to_one", - "name": "core_metadata_collections", - "required": true, - "target_type": "core_metadata_collection" - } - ], - "namespace": "https://data.heal.org", - "program": "*", - "project": "*", - "properties": { - "core_metadata_collections": { + "diagnoses": { "anyOf": [ { "items": { "additionalProperties": true, - "maxItems": 1, "minItems": 1, "properties": { "id": { @@ -3615,80 +3660,173 @@ } ] }, - "created_datetime": { - "oneOf": [ - { - "format": "date-time", - "type": "string" - }, - { - "type": "null" + "dlco_ref_predictive_percent": { + "term": { + "description": "The value, as a percentage of predicted lung volume, measuring the amount of carbon monoxide detected in a patient's lungs.\n", + "termDef": { + "cde_id": 2180255, + "cde_version": 1, + "source": "caDSR", + "term": "Lung Carbon Monoxide Diffusing Capability Test Assessment Predictive Value Percentage Value", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2180255&version=1.0" } + }, + "type": "number" + }, + "estrogen_receptor_percent_positive_ihc": { + "enum": [ + "<1%", + "1-10%", + "11-20%", + "21-30%", + "31-40%", + "41-50%", + "51-60%", + "61-70%", + "71-80%", + "81-90%", + "91-100%" ], "term": { - "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" + "description": "Classification to represent ER Positive results expressed as a percentage value.\n", + "termDef": { + "cde_id": 3128341, + "cde_version": 1, + "source": "caDSR", + "term": "ER Level Cell Percentage Category", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3128341&version=1.0" + } } }, - "data_category": { + "estrogen_receptor_result_ihc": { + "enum": [ + "Negative", + "Not Performed", + "Positive", + "Unknown" + ], "term": { - "description": "Broad categorization of the contents of the data file.\n" + "description": "Text term to represent the overall result of Estrogen Receptor (ER) testing.\n", + "termDef": { + "cde_id": 2957359, + "cde_version": 2, + "source": "caDSR", + "term": "Breast Carcinoma Estrogen Receptor Status", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2957359&version=2.0" + } + } + }, + "fev1_fvc_post_bronch_percent": { + "term": { + "description": "Percentage value to represent result of Forced Expiratory Volume in 1 second (FEV1) divided by the Forced Vital Capacity (FVC) post-bronchodilator.\n", + "termDef": { + "cde_id": 3302956, + "cde_version": 1, + "source": "caDSR", + "term": "Post Bronchodilator FEV1/FVC Percent Value", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3302956&version=1.0" + } }, - "type": "string" + "type": "number" }, - "data_format": { + "fev1_fvc_pre_bronch_percent": { "term": { - "description": "Format of the data files.\n" + "description": "Percentage value to represent result of Forced Expiratory Volume in 1 second (FEV1) divided by the Forced Vital Capacity (FVC) pre-bronchodilator.\n", + "termDef": { + "cde_id": 3302955, + "cde_version": 1, + "source": "caDSR", + "term": "Pre Bronchodilator FEV1/FVC Percent Value", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3302955&version=1.0" + } }, - "type": "string" + "type": "number" }, - "data_type": { + "fev1_ref_post_bronch_percent": { "term": { - "description": "Specific content type of the data file.\n" + "description": "The percentage comparison to a normal value reference range of the volume of air that a patient can forcibly exhale from the lungs in one second post-bronchodilator.\n", + "termDef": { + "cde_id": 3302948, + "cde_version": 1, + "source": "caDSR", + "term": "Post Bronchodilator Lung Forced Expiratory Volume 1 Test Lab Percentage Value", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3302948&version=1.0" + } }, - "type": "string" + "type": "number" }, - "doc_url": { - "description": "The originating URL of the document.\n", - "type": "string" + "fev1_ref_pre_bronch_percent": { + "term": { + "description": "The percentage comparison to a normal value reference range of the volume of air that a patient can forcibly exhale from the lungs in one second pre-bronchodilator.\n", + "termDef": { + "cde_id": 3302947, + "cde_version": 1, + "source": "caDSR", + "term": "Pre Bronchodilator Lung Forced Expiratory Volume 1 Test Lab Percentage Value", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3302947&version=1.0" + } + }, + "type": "number" }, - "error_type": { + "her2_erbb2_percent_positive_ihc": { "enum": [ - "file_size", - "file_format", - "md5sum" + "<1%", + "1-10%", + "11-20%", + "21-30%", + "31-40%", + "41-50%", + "51-60%", + "61-70%", + "71-80%", + "81-90%", + "91-100%" ], "term": { - "description": "Type of error for the data file object.\n" + "description": "Classification to represent the number of positive HER2/ERBB2 cells in a specimen or sample.\n", + "termDef": { + "cde_id": 3086980, + "cde_version": 1, + "source": "caDSR", + "term": "HER2 ERBB Positive Finding Cell Percentage Category", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3086980&version=1.0" + } } }, - "file_name": { - "term": { - "description": "The name (or part of a name) of a file (of any type).\n" - }, - "type": "string" - }, - "file_size": { + "her2_erbb2_result_fish": { + "enum": [ + "Negative", + "Not Performed", + "Positive", + "Unknown" + ], "term": { - "description": "The size of the data file (object) in bytes.\n" - }, - "type": "integer" + "description": "the type of outcome for HER2 as determined by an in situ hybridization (ISH) assay.\n", + "termDef": { + "cde_id": 2854089, + "cde_version": 1, + "source": "caDSR", + "term": "Laboratory Procedure HER2/neu in situ Hybridization Outcome Type", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2854089&version=1.0" + } + } }, - "file_state": { - "default": "registered", + "her2_erbb2_result_ihc": { "enum": [ - "registered", - "uploading", - "uploaded", - "validating", - "validated", - "submitted", - "processing", - "processed", - "released", - "error" + "Negative", + "Not Performed", + "Positive", + "Unknown" ], "term": { - "description": "The current state of the data file object.\n" + "description": "Text term to signify the result of the medical procedure that involves testing a sample of blood or tissue for HER2 by histochemical localization of immunoreactive substances using labeled antibodies as reagents.\n", + "termDef": { + "cde_id": 2957563, + "cde_version": 2, + "source": "caDSR", + "term": "Laboratory Procedure HER2/neu Immunohistochemistry Receptor Status", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2957563&version=2.0" + } } }, "id": { @@ -3706,16 +3844,91 @@ }, "type": "string" }, - "md5sum": { - "pattern": "^[a-f0-9]{32}$", + "ldh_level_at_diagnosis": { "term": { - "description": "The 128-bit hash value expressed as a 32 digit hexadecimal number used as a file's digital fingerprint.\n" + "description": "The 2 decimal place numeric laboratory value measured, assigned or computed related to the assessment of lactate dehydrogenase in a specimen.\n", + "termDef": { + "cde_id": 2798766, + "cde_version": 1, + "source": "caDSR", + "term": "Laboratory Procedure Lactate Dehydrogenase Result Integer::2 Decimal Place Value", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2798766&version=1.0" + } }, - "type": "string" + "type": "number" }, - "object_id": { - "description": "The GUID of the object in the index service.", - "type": "string" + "ldh_normal_range_upper": { + "term": { + "description": "The top value of the range of statistical characteristics that are supposed to represent accepted standard, non-pathological pattern for lactate dehydrogenase (units not specified).\n", + "termDef": { + "cde_id": 2597015, + "cde_version": 1, + "source": "caDSR", + "term": "Laboratory Procedure Lactate Dehydrogenase Result Upper Limit of Normal Value", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2597015&version=1.0" + } + }, + "type": "number" + }, + "microsatellite_instability_abnormal": { + "enum": [ + "Yes", + "No", + "Unknown" + ], + "term": { + "description": "The yes/no indicator to signify the status of a tumor for microsatellite instability.\n", + "termDef": { + "cde_id": 3123142, + "cde_version": 1, + "source": "caDSR", + "term": "Microsatellite Instability Occurrence Indicator", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3123142&version=1.0" + } + } + }, + "progesterone_receptor_percent_positive_ihc": { + "enum": [ + "<1%", + "1-10%", + "11-20%", + "21-30%", + "31-40%", + "41-50%", + "51-60%", + "61-70%", + "71-80%", + "81-90%", + "91-100%" + ], + "term": { + "description": "Classification to represent Progesterone Receptor Positive results expressed as a percentage value.\n", + "termDef": { + "cde_id": 3128342, + "cde_version": 1, + "source": "caDSR", + "term": "Progesterone Receptor Level Cell Percentage Category", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3128342&version=1.0" + } + } + }, + "progesterone_receptor_result_ihc": { + "enum": [ + "Negative", + "Not Performed", + "Positive", + "Unknown" + ], + "term": { + "description": "Text term to represent the overall result of Progresterone Receptor (PR) testing.\n", + "termDef": { + "cde_id": 2957357, + "cde_version": 2, + "source": "caDSR", + "term": "Breast Carcinoma Progesterone Receptor Status", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2957357&version=2.0" + } + } }, "project_id": { "term": { @@ -3765,13 +3978,15 @@ } }, "submitter_id": { - "description": "A project-specific identifier for a node. This property is the calling card/nickname/alias for a unit of submission. It can be used in place of the UUID for identifying or recalling a node.\n", "type": [ - "string" + "string", + "null" ] }, "type": { - "type": "string" + "enum": [ + "clinical_test" + ] }, "updated_datetime": { "oneOf": [ @@ -3789,13 +4004,10 @@ } }, "required": [ - "type", - "submitter_id", - "file_name", - "file_size", - "md5sum", - "data_format", - "doc_url" + "biomarker_name", + "biomarker_result", + "biomarker_test_method", + "cases" ], "submittable": true, "systemProperties": [ @@ -3805,7 +4017,7 @@ "updated_datetime", "state" ], - "title": "Open Access Doc", + "title": "Clinical Test", "type": "object", "uniqueKeys": [ [ @@ -3818,116 +4030,79 @@ ], "validators": null }, - "program": { + "core_metadata_collection": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "category": "administrative", - "description": "A broad framework of goals to be achieved. (NCIt C52647)\n", - "id": "program", - "links": [], + "description": "Structured description of a collection of several dataset\n", + "id": "core_metadata_collection", + "links": [ + { + "backref": "core_metadata_collections", + "label": "data_from", + "multiplicity": "many_to_one", + "name": "projects", + "required": true, + "target_type": "project" + } + ], + "namespace": "https://dcp.bionimbus.org/", "program": "*", "project": "*", "properties": { - "dbgap_accession_number": { - "description": "The dbgap accession number provided for the program.", + "contributor": { + "description": "An entity responsible for making contributions to the resource. Examples of a Contributor include a person, an organization, or a service. Typically, the name of a Contributor should be used to indicate the entity.\n", "type": "string" }, - "id": { - "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", - "systemAlias": "node_id", - "term": { - "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", - "termDef": { - "cde_id": "C54100", - "cde_version": null, - "source": "NCIt", - "term": "Universally Unique Identifier", - "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" - } - }, - "type": "string" - }, - "name": { - "description": "Full name/title of the program.", + "coverage": { + "description": "The spatial or temporal topic of the resource, the spatial applicability of the resource, or the jurisdiction under which the resource is relevant. Spatial topic and spatial applicability may be a named place or a location specified by its geographic coordinates. Temporal topic may be a named period, date, or date range. A jurisdiction may be a named administrative entity or a geographic place to which the resource applies. Recommended best practice is to use a controlled vocabulary such as the Thesaurus of Geographic Names [TGN] (http://www.getty.edu/research/tools/vocabulary/tgn/index.html). Where appropriate, named places or time periods can be used in preference to numeric identifiers such as sets of coordinates or date ranges.\n", "type": "string" }, - "type": { - "type": "string" - } - }, - "required": [ - "name", - "dbgap_accession_number" - ], - "submittable": false, - "systemProperties": [ - "id" - ], - "title": "Program", - "type": "object", - "uniqueKeys": [ - [ - "id" - ], - [ - "name" - ] - ], - "validators": null - }, - "project": { - "$schema": "http://json-schema.org/draft-04/schema#", - "additionalProperties": false, - "category": "administrative", - "constraints": null, - "description": "Any specifically defined piece of work that is undertaken or attempted to meet a single requirement. (NCIt C47885)\n", - "id": "project", - "links": [ - { - "backref": "projects", - "label": "member_of", - "multiplicity": "many_to_one", - "name": "programs", - "required": true, - "target_type": "program" - } - ], - "program": "*", - "project": "*", - "properties": { - "administering_ic": { - "description": "The NIH Institute or Center (IC) to which the Center for Scientific Review (CSR) routes NIH grant applications for a funding decision. An IC may request to change this assignment if the application is more suited to another IC. Also referred to as primary assignment.\n", - "type": "string" + "created_datetime": { + "oneOf": [ + { + "format": "date-time", + "type": "string" + }, + { + "type": "null" + } + ], + "term": { + "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" + } }, - "availability_mechanism": { - "description": "Mechanism by which the project will be made available.", + "creator": { + "description": "An entity primarily responsible for making the resource. Examples of a Creator include a person, an organization, or a service. Typically, the name of a Creator should be used to indicate the entity.\n", "type": "string" }, - "availability_type": { - "description": "Is the project open or restricted?", - "enum": [ - "Open", - "Restricted" - ] - }, - "code": { - "description": "Unique identifier for the project.", + "data_type": { + "description": "The nature or genre of the resource. Recommended best practice is to use a controlled vocabulary such as the DCMI Type Vocabulary [DCMITYPE]. To describe the file format, physical medium, or dimensions of the resource, use the Format element.\n", "type": "string" }, - "data_description": { - "description": "The description of the type of data found in the data set.\n", - "type": "string" + "date": { + "oneOf": [ + { + "format": "date-time", + "type": "string" + }, + { + "type": "null" + } + ], + "term": { + "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" + } }, - "date_collected": { - "description": "The date or date range in which the project data was collected.", + "description": { + "description": "An account of the resource. Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource.\n", "type": "string" }, - "dbgap_accession_number": { - "description": "The dbgap accession number provided for the project.", + "format": { + "description": "The file format, physical medium, or dimensions of the resource. Examples of dimensions include size and duration. Recommended best practice is to use a controlled vocabulary such as the list of Internet Media Types [MIME] (http://www.iana.org/assignments/media-types/). \n", "type": "string" }, "id": { - "description": "UUID for the project.", "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", "systemAlias": "node_id", "term": { @@ -3942,39 +4117,17 @@ }, "type": "string" }, - "institution": { - "description": "Public or Private entity, including Government Agencies.\n", - "items": { - "type": "string" - }, - "type": "array" - }, - "intended_release_date": { - "description": "Tracks a Project's intended release date.", - "format": "date-time", - "type": "string" - }, - "investigator": { - "description": "A researcher(s) in a study who oversees multiple aspects of the study, such as concept development, protocol writing, protocol submission for IRB approval, participant recruitment, informed consent, data collection, analysis, interpretation and presentation.\n", - "type": "string" - }, - "investigator_affiliation": { - "description": "The investigator's affiliation with respect to a research institution.", - "type": "string" - }, - "investigator_name": { - "description": "Name of the principal investigator for the project.", - "type": "string" - }, - "location": { - "description": "Location of the partaking institution (Public or Private entity, including Government Agencies).\n", + "language": { + "description": "A language of the resource. Recommended best practice is to use a controlled vocabulary such as RFC 4646 (http://www.ietf.org/rfc/rfc4646.txt).\n", "type": "string" }, - "name": { - "description": "Display name/brief description for the project.", + "project_id": { + "term": { + "description": "Unique ID for any specific defined piece of work that is undertaken or attempted to meet a single requirement.\n" + }, "type": "string" }, - "programs": { + "projects": { "anyOf": [ { "items": { @@ -4027,116 +4180,283 @@ }, "type": "object" } - ], - "description": "Indicates that the project is logically part of the indicated project.\n" + ] }, - "project_title": { - "description": "Title of the NIH-funded project.\n", + "publisher": { + "description": "An entity responsible for making the resource available. Examples of a Publisher include a person, an organization, or a service. Typically, the name of a Publisher should be used to indicate the entity.\n", "type": "string" }, - "releasable": { - "default": false, - "description": "A project can only be released by the user when `releasable` is true.\n", - "type": "boolean" - }, - "released": { - "default": false, - "description": "To release a project is to tell the GDC to include all submitted\nentities in the next GDC index.\n", - "type": "boolean" + "relation": { + "description": "A related resource. Recommended best practice is to identify the related resource by means of a string conforming to a formal identification system. \n", + "type": "string" }, - "research_focus_area": { - "description": "Description of the Research Focus Area.\n", + "rights": { + "description": "Information about rights held in and over the resource. Typically, rights information includes a statement about various property rights associated with the resource, including intellectual property rights.\n", "type": "string" }, - "research_program": { - "description": "Name of the NIH-registered Research Program.\n", + "source": { + "description": "A related resource from which the described resource is derived. The described resource may be derived from the related resource in whole or in part. Recommended best practice is to identify the related resource by means of a string conforming to a formal identification system.\n", "type": "string" }, "state": { - "default": "open", - "description": "The possible states a project can be in. All but `open` are\nequivalent to some type of locked state.\n", - "enum": [ - "open", - "review", - "submitted", - "processing", - "closed", - "legacy" - ] + "default": "validated", + "downloadable": [ + "uploaded", + "md5summed", + "validating", + "validated", + "error", + "invalid", + "released" + ], + "oneOf": [ + { + "enum": [ + "uploading", + "uploaded", + "md5summing", + "md5summed", + "validating", + "error", + "invalid", + "suppressed", + "redacted", + "live" + ] + }, + { + "enum": [ + "validated", + "submitted", + "released" + ] + } + ], + "public": [ + "live" + ], + "term": { + "description": "The current state of the object.\n" + } }, - "support_id": { - "description": "The ID of the source providing support/grant resources.", + "subject": { + "description": "The topic of the resource. Typically, the subject will be represented using keywords, key phrases, or classification codes. Recommended best practice is to use a controlled vocabulary.\n", "type": "string" }, - "support_source": { - "description": "The name of source providing support/grant resources.", + "submitter_id": { + "description": "A project-specific identifier for a node. This property is the calling card/nickname/alias for a unit of submission. It can be used in place of the UUID for identifying or recalling a node.\n", + "type": [ + "string" + ] + }, + "title": { + "description": "A name given to the resource. Typically, a Title will be a name by which the resource is formally known.\n", "type": "string" }, "type": { "type": "string" }, - "year_awarded": { - "description": "Year in which NIH awarded the funding project.\n", - "type": "integer" + "updated_datetime": { + "oneOf": [ + { + "format": "date-time", + "type": "string" + }, + { + "type": "null" + } + ], + "term": { + "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" + } } }, "required": [ - "code", - "name", - "programs", - "dbgap_accession_number" + "submitter_id", + "type", + "projects" ], "submittable": true, "systemProperties": [ "id", + "project_id", "state", - "released", - "releasable", - "intended_release_date" + "created_datetime", + "updated_datetime" ], - "title": "Project", + "title": "Core Metadata Collection", "type": "object", "uniqueKeys": [ [ "id" ], [ - "code" + "project_id", + "submitter_id" ] ], "validators": null }, - "root": { + "data_release": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "category": "internal", - "constraints": null, - "id": "root", - "links": [], - "program": "*", - "project": "*", - "properties": { - "id": { - "enum": [ - "root" - ] - }, - "schema_version": { - "type": "string" + "description": "Internal node to store different data releases.\n", + "id": "data_release", + "links": [ + { + "backref": "data_releases", + "label": "describes", + "multiplicity": "many_to_one", + "name": "roots", + "required": true, + "target_type": "root" + } + ], + "namespace": "http://gdc.nci.nih.gov", + "properties": { + "created_datetime": { + "oneOf": [ + { + "format": "date-time", + "type": "string" + }, + { + "type": "null" + } + ], + "term": { + "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" + } }, - "type": { + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "systemAlias": "node_id", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, "type": "string" + }, + "major_version": { + "description": "The number identifying the major version.\n", + "type": "integer" + }, + "minor_version": { + "description": "The number identifying the minor version.\n", + "type": "integer" + }, + "release_date": { + "oneOf": [ + { + "format": "date-time", + "type": "string" + }, + { + "type": "null" + } + ], + "term": { + "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" + } + }, + "released": { + "default": false, + "description": "Indicates if it is the current release.\n", + "type": "boolean" + }, + "roots": { + "anyOf": [ + { + "items": { + "additionalProperties": true, + "maxItems": 1, + "minItems": 1, + "properties": { + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "submitter_id": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + { + "additionalProperties": true, + "properties": { + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "submitter_id": { + "type": "string" + } + }, + "type": "object" + } + ] + }, + "type": { + "enum": [ + "data_release" + ] + }, + "updated_datetime": { + "oneOf": [ + { + "format": "date-time", + "type": "string" + }, + { + "type": "null" + } + ], + "term": { + "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" + } } }, "required": [ - "type" + "major_version", + "minor_version" ], - "root": "*", "submittable": false, "systemProperties": [ - "id" + "id", + "created_datetime", + "updated_datetime" ], - "title": "Root", + "title": "Data Release", "type": "object", "uniqueKeys": [ [ @@ -4144,5 +4464,9115 @@ ] ], "validators": null + }, + "demographic": { + "$schema": "http://json-schema.org/draft-04/schema#", + "additionalProperties": false, + "category": "clinical", + "description": "Data for the characterization of the patient by means of segementing the population (e.g., characterization by age, sex, or race).\n", + "id": "demographic", + "links": [ + { + "backref": "demographics", + "label": "describes", + "multiplicity": "one_to_one", + "name": "cases", + "required": true, + "target_type": "case" + } + ], + "namespace": "http://gdc.nci.nih.gov", + "preferred": [ + "year_of_death" + ], + "program": "*", + "project": "*", + "properties": { + "cases": { + "anyOf": [ + { + "items": { + "additionalProperties": true, + "maxItems": 1, + "minItems": 1, + "properties": { + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "submitter_id": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + { + "additionalProperties": true, + "properties": { + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "submitter_id": { + "type": "string" + } + }, + "type": "object" + } + ] + }, + "created_datetime": { + "oneOf": [ + { + "format": "date-time", + "type": "string" + }, + { + "type": "null" + } + ], + "term": { + "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" + } + }, + "ethnicity": { + "enum": [ + "hispanic or latino", + "not hispanic or latino", + "Unknown", + "not reported", + "not allowed to collect" + ], + "term": { + "description": "An individual's self-described social and cultural grouping, specifically whether an individual describes themselves as Hispanic or Latino. The provided values are based on the categories defined by the U.S. Office of Management and Business and used by the U.S. Census Bureau.\n", + "termDef": { + "cde_id": 2192217, + "cde_version": 2, + "source": "caDSR", + "term": "Ethnic Group Category Text", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2192217&version=2.0" + } + } + }, + "gender": { + "enum": [ + "female", + "male", + "unknown", + "unspecified", + "not reported" + ], + "term": { + "description": "Text designations that identify gender. Gender is described as the assemblage of properties that distinguish people on the basis of their societal roles. [Explanatory Comment 1: Identification of gender is based upon self-report and may come from a form, questionnaire, interview, etc.]\n", + "termDef": { + "cde_id": 2200604, + "cde_version": 3, + "source": "caDSR", + "term": "Person Gender Text Type", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2200604&version=3.0" + } + } + }, + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "systemAlias": "node_id", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "project_id": { + "term": { + "description": "Unique ID for any specific defined piece of work that is undertaken or attempted to meet a single requirement.\n" + }, + "type": "string" + }, + "race": { + "enum": [ + "white", + "american indian or alaska native", + "black or african american", + "asian", + "native hawaiian or other pacific islander", + "other", + "Unknown", + "not reported", + "not allowed to collect" + ], + "term": { + "description": "An arbitrary classification of a taxonomic group that is a division of a species. It usually arises as a consequence of geographical isolation within a species and is characterized by shared heredity, physical attributes and behavior, and in the case of humans, by common history, nationality, or geographic distribution. The provided values are based on the categories defined by the U.S. Office of Management and Business and used by the U.S. Census Bureau.\n", + "termDef": { + "cde_id": 2192199, + "cde_version": 1, + "source": "caDSR", + "term": "Race Category Text", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2192199&version=1.0" + } + } + }, + "state": { + "default": "validated", + "downloadable": [ + "uploaded", + "md5summed", + "validating", + "validated", + "error", + "invalid", + "released" + ], + "oneOf": [ + { + "enum": [ + "uploading", + "uploaded", + "md5summing", + "md5summed", + "validating", + "error", + "invalid", + "suppressed", + "redacted", + "live" + ] + }, + { + "enum": [ + "validated", + "submitted", + "released" + ] + } + ], + "public": [ + "live" + ], + "term": { + "description": "The current state of the object.\n" + } + }, + "submitter_id": { + "type": [ + "string", + "null" + ] + }, + "type": { + "type": "string" + }, + "updated_datetime": { + "oneOf": [ + { + "format": "date-time", + "type": "string" + }, + { + "type": "null" + } + ], + "term": { + "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" + } + }, + "year_of_birth": { + "term": { + "description": "Numeric value to represent the calendar year in which an individual was born.\n", + "termDef": { + "cde_id": 2896954, + "cde_version": 1, + "source": "caDSR", + "term": "Year Birth Date Number", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2896954&version=1.0" + } + }, + "type": [ + "number", + "null" + ] + }, + "year_of_death": { + "term": { + "description": "Numeric value to represent the year of the death of an individual.\n", + "termDef": { + "cde_id": 2897030, + "cde_version": 1, + "source": "caDSR", + "term": "Year Death Number", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2897030&version=1.0" + } + }, + "type": "number" + } + }, + "required": [ + "submitter_id", + "cases" + ], + "submittable": true, + "systemProperties": [ + "id", + "project_id", + "state", + "created_datetime", + "updated_datetime" + ], + "title": "Demographic", + "type": "object", + "uniqueKeys": [ + [ + "id" + ], + [ + "project_id", + "submitter_id" + ] + ], + "validators": null + }, + "diagnosis": { + "$schema": "http://json-schema.org/draft-04/schema#", + "additionalProperties": false, + "category": "clinical", + "description": "Data from the investigation, analysis and recognition of the presence and nature of disease, condition, or injury from expressed signs and symptoms; also, the scientific determination of any kind; the concise results of such an investigation.\n", + "id": "diagnosis", + "links": [ + { + "backref": "diagnoses", + "label": "describes", + "multiplicity": "many_to_one", + "name": "cases", + "required": true, + "target_type": "case" + } + ], + "namespace": "http://gdc.nci.nih.gov", + "preferred": [ + "days_to_birth", + "site_of_resection_or_biopsy" + ], + "program": "*", + "project": "*", + "properties": { + "age_at_diagnosis": { + "maximum": 32872, + "minimum": 0, + "term": { + "description": "Age at the time of diagnosis expressed in number of days since birth.\n", + "termDef": { + "cde_id": 3225640, + "cde_version": 2, + "source": "caDSR", + "term": "Patient Diagnosis Age Day Value", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3225640&version=2.0" + } + }, + "type": [ + "number", + "null" + ] + }, + "ajcc_clinical_m": { + "enum": [ + "M0", + "M1", + "M1a", + "M1b", + "M1c", + "MX", + "cM0 (i+)", + "Unknown", + "Not Reported", + "Not Allowed To Collect" + ], + "term": { + "description": "Extent of the distant metastasis for the cancer based on evidence obtained from clinical assessment parameters determined prior to treatment.\n", + "termDef": { + "cde_id": 3440331, + "cde_version": 1, + "source": "caDSR", + "term": "Neoplasm American Joint Committee on Cancer Clinical Distant Metastasis M Stage", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3440331&version=1.0" + } + } + }, + "ajcc_clinical_n": { + "enum": [ + "N0", + "N0 (i+)", + "N0 (i-)", + "N0 (mol+)", + "N0 (mol-)", + "N1", + "N1a", + "N1b", + "N1bI", + "N1bII", + "N1bIII", + "N1bIV", + "N1c", + "N1mi", + "N2", + "N2a", + "N2b", + "N2c", + "N3", + "N3a", + "N3b", + "N3c", + "N4", + "NX", + "Unknown", + "Not Reported", + "Not Allowed To Collect" + ], + "term": { + "description": "Extent of the regional lymph node involvement for the cancer based on evidence obtained from clinical assessment parameters determined prior to treatment.\n", + "termDef": { + "cde_id": 3440330, + "cde_version": 1, + "source": "caDSR", + "term": "Neoplasm American Joint Committee on Cancer Clinical Regional Lymph Node N Stage", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3440330&version=1.0" + } + } + }, + "ajcc_clinical_stage": { + "enum": [ + "Stage 0", + "Stage 0a", + "Stage 0is", + "Stage I", + "Stage IA", + "Stage IA1", + "Stage IA2", + "Stage IB", + "Stage IB Cervix", + "Stage IB1", + "Stage IB2", + "Stage II", + "Stage II Cervix", + "Stage IIA", + "Stage IIA Cervix", + "Stage IIB", + "Stage IIC", + "Stage III", + "Stage IIIA", + "Stage IIIB", + "Stage IIIC", + "Stage IS", + "Stage IV", + "Stage IVA", + "Stage IVB", + "Stage IVC", + "Stage Tis", + "Stage X", + "Unknown", + "Not Reported", + "Not Allowed To Collect" + ], + "term": { + "description": "Stage group determined from clinical information on the tumor (T), regional node (N) and metastases (M) and by grouping cases with similar prognosis for cancer.\n", + "termDef": { + "cde_id": 3440332, + "cde_version": 1, + "source": "caDSR", + "term": "Neoplasm American Joint Committee on Cancer Clinical Group Stage", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3440332&version=1.0" + } + } + }, + "ajcc_clinical_t": { + "enum": [ + "T0", + "T1", + "T1a", + "T1a1", + "T1a2", + "T1b", + "T1b1", + "T1b2", + "T1c", + "T1mi", + "T2", + "T2a", + "T2a1", + "T2a2", + "T2b", + "T2c", + "T2d", + "T3", + "T3a", + "T3b", + "T3c", + "T3d", + "T4", + "T4a", + "T4b", + "T4c", + "T4d", + "T4e", + "TX", + "Ta", + "Tis", + "Tis (DCIS)", + "Tis (LCIS)", + "Tis (Paget's)", + "Unknown", + "Not Reported", + "Not Allowed To Collect" + ], + "term": { + "description": "Extent of the primary cancer based on evidence obtained from clinical assessment parameters determined prior to treatment.\n", + "termDef": { + "cde_id": 3440328, + "cde_version": 1, + "source": "caDSR", + "term": "Neoplasm American Joint Committee on Cancer Clinical Primary Tumor T Stage", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3440328&version=1.0" + } + } + }, + "ajcc_pathologic_m": { + "enum": [ + "M0", + "M1", + "M1a", + "M1b", + "M1c", + "M2", + "MX", + "cM0 (i+)", + "Unknown", + "Not Reported", + "Not Allowed To Collect" + ], + "term": { + "description": "Code to represent the defined absence or presence of distant spread or metastases (M) to locations via vascular channels or lymphatics beyond the regional lymph nodes, using criteria established by the American Joint Committee on Cancer (AJCC).\n", + "termDef": { + "cde_id": 3045439, + "cde_version": 1, + "source": "caDSR", + "term": "American Joint Committee on Cancer Metastasis Stage Code", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3045439&version=1.0" + } + } + }, + "ajcc_pathologic_n": { + "enum": [ + "N0", + "N0 (i+)", + "N0 (i-)", + "N0 (mol+)", + "N0 (mol-)", + "N1", + "N1a", + "N1b", + "N1bI", + "N1bII", + "N1bIII", + "N1bIV", + "N1c", + "N1mi", + "N2", + "N2a", + "N2b", + "N2c", + "N3", + "N3a", + "N3b", + "N3c", + "N4", + "NX", + "Unknown", + "Not Reported", + "Not Allowed To Collect" + ], + "term": { + "description": "The codes that represent the stage of cancer based on the nodes present (N stage) according to criteria based on multiple editions of the AJCC's Cancer Staging Manual.\n", + "termDef": { + "cde_id": 3203106, + "cde_version": 1, + "source": "caDSR", + "term": "Neoplasm Disease Lymph Node Stage American Joint Committee on Cancer Code", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3203106&version=1.0" + } + } + }, + "ajcc_pathologic_stage": { + "enum": [ + "Stage 0", + "Stage 0a", + "Stage 0is", + "Stage I", + "Stage IA", + "Stage IA1", + "Stage IA2", + "Stage IB", + "Stage IB1", + "Stage IB2", + "Stage IC", + "Stage II", + "Stage IIA", + "Stage IIA1", + "Stage IIA2", + "Stage IIB", + "Stage IIC", + "Stage III", + "Stage IIIA", + "Stage IIIB", + "Stage IIIC", + "Stage IV", + "Stage IVA", + "Stage IVB", + "Stage IVC", + "Stage Tis", + "Stage X" + ], + "term": { + "description": "The extent of a cancer, especially whether the disease has spread from the original site to other parts of the body based on AJCC staging criteria.\n", + "termDef": { + "cde_id": 3203222, + "cde_version": 1, + "source": "caDSR", + "term": "Neoplasm Disease Stage American Joint Committee on Cancer Code", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3203222&version=1.0" + } + } + }, + "ajcc_pathologic_t": { + "enum": [ + "T0", + "T1", + "T1a", + "T1a1", + "T1a2", + "T1b", + "T1b1", + "T1b2", + "T1c", + "T1mi", + "T2", + "T2a", + "T2a1", + "T2a2", + "T2b", + "T2c", + "T2d", + "T3", + "T3a", + "T3b", + "T3c", + "T3d", + "T4", + "T4a", + "T4b", + "T4c", + "T4d", + "T4e", + "TX", + "Ta", + "Tis", + "Tis (DCIS)", + "Tis (LCIS)", + "Tis (Paget's)", + "Unknown", + "Not Reported", + "Not Allowed To Collect" + ], + "term": { + "description": "Code of pathological T (primary tumor) to define the size or contiguous extension of the primary tumor (T), using staging criteria from the American Joint Committee on Cancer (AJCC).\n", + "termDef": { + "cde_id": 3045435, + "cde_version": 1, + "source": "caDSR", + "term": "American Joint Committee on Cancer Tumor Stage Code", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3045435&version=1.0" + } + } + }, + "ann_arbor_b_symptoms": { + "enum": [ + "Yes", + "No", + "Unknown", + "Not Reported", + "Not Allowed To Collect" + ], + "term": { + "description": "Text term to signify whether lymphoma B-symptoms are present as noted in the patient's medical record.\n", + "termDef": { + "cde_id": 2902402, + "cde_version": 1, + "source": "caDSR", + "term": "Lymphoma B-Symptoms Medical Record Documented Indicator", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2902402&version=1.0" + } + } + }, + "ann_arbor_clinical_stage": { + "enum": [ + "Stage I", + "Stage II", + "Stage III", + "Stage IV" + ], + "term": { + "description": "The classification of the clinically confirmed anatomic disease extent of lymphoma (Hodgkin's and Non-Hodgkins) based on the Ann Arbor Staging System.\n", + "termDef": { + "cde_id": null, + "cde_version": null, + "source": null, + "term": "Ann Arbor Clinical Stage", + "term_url": null + } + } + }, + "ann_arbor_extranodal_involvement": { + "enum": [ + "Yes", + "No", + "Unknown", + "Not Reported", + "Not Allowed To Collect" + ], + "term": { + "description": "Indicator that identifies whether a patient with malignant lymphoma has lymphomatous involvement of an extranodal site.\n", + "termDef": { + "cde_id": 3364582, + "cde_version": 1, + "source": "caDSR", + "term": "Lymphomatous Extranodal Site Involvement Indicator", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3364582&version=1.0" + } + } + }, + "ann_arbor_pathologic_stage": { + "enum": [ + "Stage I", + "Stage II", + "Stage III", + "Stage IV" + ], + "term": { + "description": "The classification of the pathologically confirmed anatomic disease extent of lymphoma (Hodgkin's and Non-Hodgkins) based on the Ann Arbor Staging System.\n", + "termDef": { + "cde_id": null, + "cde_version": null, + "source": null, + "term": "Ann Arbor Pathologic Stage", + "term_url": null + } + } + }, + "burkitt_lymphoma_clinical_variant": { + "enum": [ + "Endemic", + "Immunodeficiency-associated, adult", + "Immunodeficiency-associated, pediatric", + "Sporadic, adult", + "Sporadic, pediatric", + "Unknown", + "Not Reported", + "Not Allowed To Collect" + ], + "term": { + "description": "Burkitt's lymphoma categorization based on clinical features that differ from other forms of the same disease.\n", + "termDef": { + "cde_id": 3770421, + "cde_version": 1, + "source": "caDSR", + "term": "Burkitt Lymphoma Clinical Variant Type", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3770421&version=1.0" + } + } + }, + "cases": { + "anyOf": [ + { + "items": { + "additionalProperties": true, + "maxItems": 1, + "minItems": 1, + "properties": { + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "submitter_id": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + { + "additionalProperties": true, + "properties": { + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "submitter_id": { + "type": "string" + } + }, + "type": "object" + } + ] + }, + "cause_of_death": { + "enum": [ + "Cancer Related", + "Not Cancer Related", + "Unknown" + ], + "term": { + "description": "Text term to identify the cause of death for a patient.\n", + "termDef": { + "cde_id": 2554674, + "cde_version": 3, + "source": "caDSR", + "term": "Patient Death Reason", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2554674&version=3.0" + } + } + }, + "circumferential_resection_margin": { + "term": { + "description": "A value in millimeters indicating the measured length between a malignant lesion of the colon or rectum and the nearest radial (or circumferential) border of tissue removed during cancer surgery.\n", + "termDef": { + "cde_id": 64202, + "cde_version": 3, + "source": "caDSR", + "term": "Colorectal Surgical Margin Circumferential Distance Measurement", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=64202&version=3.0" + } + }, + "type": "number" + }, + "classification_of_tumor": { + "enum": [ + "primary", + "metastasis", + "recurrence", + "other", + "Unknown", + "not reported", + "Not Allowed To Collect" + ], + "term": { + "description": "Text that describes the kind of disease present in the tumor specimen as related to a specific timepoint.\n", + "termDef": { + "cde_id": 3288124, + "cde_version": 1, + "source": "caDSR", + "term": "Tumor Tissue Disease Description Type", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3288124&version=1.0" + } + } + }, + "colon_polyps_history": { + "enum": [ + "Yes", + "No", + "Unknown", + "Not Reported", + "Not Allowed To Collect" + ], + "term": { + "description": "Yes/No indicator to describe if the subject had a previous history of colon polyps as noted in the history/physical or previous endoscopic report (s).\n", + "termDef": { + "cde_id": 3107197, + "cde_version": 1, + "source": "caDSR", + "term": "Colon Carcinoma Polyp Occurrence Indicator", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3107197&version=1.0" + } + } + }, + "created_datetime": { + "oneOf": [ + { + "format": "date-time", + "type": "string" + }, + { + "type": "null" + } + ], + "term": { + "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" + } + }, + "days_to_birth": { + "maximum": 0, + "minimum": -32872, + "term": { + "description": "Time interval from a person's date of birth to the date of initial pathologic diagnosis, represented as a calculated negative number of days.\n", + "termDef": { + "cde_id": 3008233, + "cde_version": 1, + "source": "caDSR", + "term": "Person Birth Date Less Initial Pathologic Diagnosis Date Calculated Day Value", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3008233&version=1.0" + } + }, + "type": [ + "number", + "null" + ] + }, + "days_to_death": { + "maximum": 32872, + "minimum": 0, + "term": { + "description": "Time interval from a person's date of death to the date of initial pathologic diagnosis, represented as a calculated number of days.\n", + "termDef": { + "cde_id": 3165475, + "cde_version": 1, + "source": "caDSR", + "term": "Death Less Initial Pathologic Diagnosis Date Calculated Day Value", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3165475&version=1.0" + } + }, + "type": "number" + }, + "days_to_hiv_diagnosis": { + "term": { + "description": "Time interval from the date of the initial pathologic diagnosis to the date of human immunodeficiency diagnosis, represented as a calculated number of days.\n", + "termDef": { + "cde_id": 4618491, + "cde_version": 1, + "source": "caDSR", + "term": "Human Immunodeficiency Virus Diagnosis Subtract Initial Pathologic Diagnosis Time Duration Day Calculation Value", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=4618491&version=1.0" + } + }, + "type": [ + "number", + "null" + ] + }, + "days_to_last_follow_up": { + "term": { + "description": "Time interval from the date of last follow up to the date of initial pathologic diagnosis, represented as a calculated number of days.\n", + "termDef": { + "cde_id": 3008273, + "cde_version": 1, + "source": "caDSR", + "term": "Last Communication Contact Less Initial Pathologic Diagnosis Date Calculated Day Value", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3008273&version=1.0" + } + }, + "type": [ + "number", + "null" + ] + }, + "days_to_last_known_disease_status": { + "term": { + "description": "Time interval from the date of last follow up to the date of initial pathologic diagnosis, represented as a calculated number of days.\n", + "termDef": { + "cde_id": 3008273, + "cde_version": 1, + "source": "caDSR", + "term": "Last Communication Contact Less Initial Pathologic Diagnosis Date Calculated Day Value", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3008273&version=1.0" + } + }, + "type": [ + "number", + "null" + ] + }, + "days_to_new_event": { + "term": { + "description": "Time interval from the date of new tumor event including progression, recurrence and new primary malignacies to the date of initial pathologic diagnosis, represented as a calculated number of days.\n", + "termDef": { + "cde_id": 3392464, + "cde_version": 1, + "source": "caDSR", + "term": "New Tumor Event Less Initial Pathologic Diagnosis Date Calculated Day Value", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3392464&version=1.0" + } + }, + "type": [ + "number", + "null" + ] + }, + "days_to_recurrence": { + "term": { + "description": "Time interval from the date of new tumor event including progression, recurrence and new primary malignancies to the date of initial pathologic diagnosis, represented as a calculated number of days.\n", + "termDef": { + "cde_id": 3392464, + "cde_version": 1, + "source": "caDSR", + "term": "New Tumor Event Less Initial Pathologic Diagnosis Date Calculated Day Value", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3392464&version=1.0" + } + }, + "type": [ + "number", + "null" + ] + }, + "figo_stage": { + "enum": [ + "Stage 0", + "Stage I", + "Stage IA", + "Stage IA1", + "Stage IA2", + "Stage IB", + "Stage IB1", + "Stage IB2", + "Stage IC", + "Stage II", + "Stage IIA", + "Stage IIA1", + "Stage IIA2", + "Stage IIB", + "Stage III", + "Stage IIIA", + "Stage IIIB", + "Stage IIIC", + "Stage IIIC1", + "Stage IIIC2", + "Stage IV", + "Stage IVA", + "Stage IVB", + "Unknown", + "Not Reported", + "Not Allowed To Collect" + ], + "term": { + "description": "The extent of a cervical or endometrial cancer within the body, especially whether the disease has spread from the original site to other parts of the body, as described by the International Federation of Gynecology and Obstetrics (FIGO) stages.\n", + "termDef": { + "cde_id": 3225684, + "cde_version": 1, + "source": "caDSR", + "term": "Gynecologic Tumor Grouping Cervical Endometrial FIGO 2009 Stage", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3225684&version=1.0" + } + } + }, + "hiv_positive": { + "enum": [ + "Yes", + "No", + "Unknown" + ], + "term": { + "description": "Text term to signify whether a physician has diagnosed HIV infection in a patient.\n", + "termDef": { + "cde_id": 4030799, + "cde_version": 1, + "source": "caDSR", + "term": "Physician Diagnosed HIV Infection Personal Medical History Yes No Not Applicable Indicator", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=4030799&version=1.0" + } + } + }, + "hpv_positive_type": { + "enum": [ + "HPV 16", + "HPV 18", + "Other HPV type(s)", + "Unknown" + ], + "term": { + "description": "Text classification to represent the strain or type of human papillomavirus identified in an individual.\n", + "termDef": { + "cde_id": 2922649, + "cde_version": 1, + "source": "caDSR", + "term": "Human Papillomavirus Type", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2922649&version=1.0" + } + } + }, + "hpv_status": { + "enum": [ + "Negative", + "Positive", + "Unknown" + ], + "term": { + "description": "The findings of the oncogenic HPV.\n", + "termDef": { + "cde_id": 2230033, + "cde_version": 1, + "source": "caDSR", + "term": "Oncogenic Human Papillomavirus Result Type", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2230033&version=1.0" + } + } + }, + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "systemAlias": "node_id", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "last_known_disease_status": { + "enum": [ + "Distant met recurrence/progression", + "Loco-regional recurrence/progression", + "Biochemical evidence of disease without structural correlate", + "Tumor free", + "Unknown tumor status", + "With tumor", + "not reported", + "Not Allowed To Collect" + ], + "term": { + "description": "Text term that describes the last known state or condition of an individual's neoplasm.\n", + "termDef": { + "cde_id": 5424231, + "cde_version": 1, + "source": "caDSR", + "term": "Person Last Known Neoplasm Status", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2759550&version=1.0" + } + } + }, + "laterality": { + "enum": [ + "Bilateral", + "Left", + "Right", + "Unknown" + ], + "term": { + "description": "For tumors in paired organs, designates the side on which the cancer originates.\n", + "termDef": { + "cde_id": 827, + "cde_version": 3, + "source": "caDSR", + "term": "Primary Tumor Laterality", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=827&version=3.0" + } + } + }, + "ldh_level_at_diagnosis": { + "term": { + "description": "The 2 decimal place numeric laboratory value measured, assigned or computed related to the assessment of lactate dehydrogenase in a specimen.\n", + "termDef": { + "cde_id": 2798766, + "cde_version": 1, + "source": "caDSR", + "term": "Laboratory Procedure Lactate Dehydrogenase Result Integer::2 Decimal Place Value", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2798766&version=1.0" + } + }, + "type": [ + "number", + "null" + ] + }, + "ldh_normal_range_upper": { + "term": { + "description": "The top value of the range of statistical characteristics that are supposed to represent accepted standard, non-pathological pattern for lactate dehydrogenase (units not specified).\n", + "termDef": { + "cde_id": 2597015, + "cde_version": 1, + "source": "caDSR", + "term": "Laboratory Procedure Lactate Dehydrogenase Result Upper Limit of Normal Value", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2597015&version=1.0" + } + }, + "type": [ + "number", + "null" + ] + }, + "lymph_nodes_positive": { + "term": { + "description": "The number of lymph nodes involved with disease as determined by pathologic examination.\n", + "termDef": { + "cde_id": 89, + "cde_version": 3, + "source": "caDSR", + "term": "Lymph Node(s) Positive Number", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=89&version=3.0" + } + }, + "type": "integer" + }, + "lymphatic_invasion_present": { + "enum": [ + "Yes", + "No", + "Unknown" + ], + "term": { + "description": "A yes/no indicator to ask if small or thin-walled vessel invasion is present, indicating lymphatic involvement\n", + "termDef": { + "cde_id": 64171, + "cde_version": 3, + "source": "caDSR", + "term": "Lymphatic/Small vessel Invasion Ind", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=64171&version=3.0" + } + } + }, + "method_of_diagnosis": { + "enum": [ + "Autopsy", + "Biopsy", + "Blood Draw", + "Bone Marrow Aspirate", + "Core Biopsy", + "Cytology", + "Debulking", + "Diagnostic Imaging", + "Excisional Biopsy", + "Fine Needle Aspiration", + "Incisional Biopsy", + "Laparoscopy", + "Laparotomy", + "Other", + "Surgical Resection", + "Ultrasound Guided Biopsy", + "Unknown", + "Not Reported", + "Not Allowed To Collect" + ], + "term": { + "description": "The method used to initially the patient's diagnosis.\n", + "termDef": { + "cde_id": null, + "cde_version": null, + "source": null, + "term": "Method of Diagnosis", + "term_url": null + } + } + }, + "morphology": { + "term": { + "description": "The third edition of the International Classification of Diseases for Oncology, published in 2000 used principally in tumor and cancer registries for coding the site (topography) and the histology (morphology) of neoplasms. The study of the structure of the cells and their arrangement to constitute tissues and, finally, the association among these to form organs. In pathology, the microscopic process of identifying normal and abnormal morphologic characteristics in tissues, by employing various cytochemical and immunocytochemical stains. A system of numbered categories for representation of data.\n", + "termDef": { + "cde_id": 3226275, + "cde_version": 1, + "source": "caDSR", + "term": "International Classification of Diseases for Oncology, Third Edition ICD-O-3 Histology Code", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3226275&version=1.0" + } + }, + "type": "string" + }, + "new_event_anatomic_site": { + "enum": [ + "Abdomen", + "Adrenal", + "Anus", + "Appendix", + "Ascites/Peritoneum", + "Axillary lymph nodes", + "Bladder", + "Bone", + "Bone Marrow", + "Brain", + "Breast", + "Cervical lymph nodes", + "Cervix", + "Colon", + "Conjunctiva", + "Contralateral Pleura", + "Distant Metastasis", + "Epididymis", + "Epidural", + "Epitrochlear lymph nodes", + "Esophagus", + "Extremities", + "Femoral lymph nodes", + "Gallbladder", + "Gastrointestinal/Abdominal", + "Head & Neck", + "Heart", + "Hilar lymph nodes", + "Hypopharynx", + "Iliac Lymph Node", + "Iliac-common lymph nodes", + "Iliac-external lymph nodes", + "Inguinal lymph nodes", + "Intraocular", + "Ipsilateral Chest Cavity", + "Ipsilateral Chest Wall", + "Ipsilateral Lymph Nodes", + "Ipsilateral Pleura", + "Kidney", + "Large Intestine", + "Larynx", + "Leptomeninges", + "Liver", + "Lung", + "Lymph Node Only", + "Lymph Node(s)", + "Mandible", + "Maxilla", + "Mediastinal Soft Tissue", + "Mediastinal lymph nodes", + "Mediastinal/Intra-thoracic", + "Mesenteric lymph nodes", + "Nasal Soft Tissue", + "Nasopharynx", + "No Known Extranodal Involvement", + "Non-regional / Distant Lymph Nodes", + "Not Applicable", + "Occipital lymph nodes", + "Oral Cavity", + "Oropharynx", + "Other", + "Other Extranodal Site", + "Other, specify", + "Ovary", + "Pancreas", + "Paraaortic lymph nodes", + "Parotid Gland", + "Parotid lymph nodes", + "Pelvis", + "Peri-orbital Soft Tissue", + "Pericardium", + "Perihilar Lymph Node", + "Peripheral Blood", + "Peritoneal Surfaces", + "Pleura/Pleural Effusion", + "Popliteal lymph nodes", + "Prostate", + "Pulmonary", + "Rectum", + "Renal Pelvis", + "Retroperitoneal lymph nodes", + "Retroperitoneum", + "Salivary Gland", + "Sinus", + "Skin", + "Small Intestine", + "Soft Tissue", + "Splenic lymph nodes", + "Stomach", + "Submandibular lymph nodes", + "Supraclavicular lymph nodes", + "Testes", + "Thyroid", + "Trunk", + "Tumor Bed", + "Ureter", + "Urethra", + "Uterus", + "Vulva", + "Unknown", + "Not Reported", + "Not Allowed To Collect" + ], + "term": { + "description": "Text term to specify the anatomic location of the return of tumor after treatment.\n", + "termDef": { + "cde_id": 3108271, + "cde_version": 2, + "source": "caDSR", + "term": "New Neoplasm Event Occurrence Anatomic Site", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3108271&version=2.0" + } + } + }, + "new_event_type": { + "enum": [ + "Biochemical Evidence of Disease", + "Both Locoregional and Distant Metastasis", + "Distant Metastasis", + "Extrahepatic Recurrence", + "Intrahepatic Recurrence", + "Intrapleural Progression", + "Locoregional (Urothelial tumor event)", + "Locoregional Disease", + "Locoregional Recurrence", + "Metachronous Testicular Tumor", + "Metastatic", + "New Primary Tumor", + "New primary Melanoma", + "No New Tumor Event", + "Not Applicable", + "Progression of Disease", + "Recurrence", + "Regional Lymph Node", + "Unknown", + "Not Reported", + "Not Allowed To Collect" + ], + "term": { + "description": "Text term to identify a new tumor event.\n", + "termDef": { + "cde_id": 3119721, + "cde_version": 1, + "source": "caDSR", + "term": "New Neoplasm Event Type", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3119721&version=1.0" + } + } + }, + "perineural_invasion_present": { + "enum": [ + "Yes", + "No", + "Unknown" + ], + "term": { + "description": "a yes/no indicator to ask if perineural invasion or infiltration of tumor or cancer is present.\n", + "termDef": { + "cde_id": 64181, + "cde_version": 3, + "source": "caDSR", + "term": "Tumor Perineural Invasion Ind", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=64181&version=3.0" + } + } + }, + "primary_diagnosis": { + "term": { + "description": "Text term for the structural pattern of cancer cells used to define a microscopic diagnosis.\n", + "termDef": { + "cde_id": 3081934, + "cde_version": 3, + "source": "caDSR", + "term": "Neoplasm Histologic Type Name", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3081934&version=3.0" + } + }, + "type": "string" + }, + "prior_malignancy": { + "enum": [ + "yes", + "no", + "unknown", + "not reported", + "Not Allowed To Collect" + ], + "term": { + "description": "Text term to describe the patient's history of prior cancer diagnosis and the spatial location of any previous cancer occurrence.\n", + "termDef": { + "cde_id": 3382736, + "cde_version": 2, + "source": "caDSR", + "term": "Prior Cancer Diagnosis Occurrence Description Text", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3382736&version=2.0" + } + } + }, + "prior_treatment": { + "enum": [ + "Yes", + "No", + "Unknown", + "Not Reported", + "Not Allowed To Collect" + ], + "term": { + "description": "A yes/no/unknown/not applicable indicator related to the administration of therapeutic agents received before the body specimen was collected.\n", + "termDef": { + "cde_id": 4231463, + "cde_version": 1, + "source": "caDSR", + "term": "Therapeutic Procedure Prior Specimen Collection Administered Yes No Unknown Not Applicable Indicator", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=4231463&version=1.0" + } + } + }, + "progression_or_recurrence": { + "enum": [ + "yes", + "no", + "unknown", + "not reported", + "Not Allowed To Collect" + ], + "term": { + "description": "Yes/No/Unknown indicator to identify whether a patient has had a new tumor event after initial treatment.\n", + "termDef": { + "cde_id": 3121376, + "cde_version": 1, + "source": "caDSR", + "term": "New Neoplasm Event Post Initial Therapy Indicator", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3121376&version=1.0" + } + } + }, + "project_id": { + "term": { + "description": "Unique ID for any specific defined piece of work that is undertaken or attempted to meet a single requirement.\n" + }, + "type": "string" + }, + "residual_disease": { + "enum": [ + "R0", + "R1", + "R2", + "RX" + ], + "term": { + "description": "Text terms to describe the status of a tissue margin following surgical resection.\n", + "termDef": { + "cde_id": 2608702, + "cde_version": 1, + "source": "caDSR", + "term": "Surgical Margin Resection Status", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2608702&version=1.0" + } + } + }, + "site_of_resection_or_biopsy": { + "term": { + "description": "The third edition of the International Classification of Diseases for Oncology, published in 2000, used principally in tumor and cancer registries for coding the site (topography) and the histology (morphology) of neoplasms. The description of an anatomical region or of a body part. Named locations of, or within, the body. A system of numbered categories for representation of data.\n", + "termDef": { + "cde_id": 3226281, + "cde_version": 1, + "source": "caDSR", + "term": "International Classification of Diseases for Oncology, Third Edition ICD-O-3 Site Code", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3226281&version=1.0" + } + }, + "type": "string" + }, + "state": { + "default": "validated", + "downloadable": [ + "uploaded", + "md5summed", + "validating", + "validated", + "error", + "invalid", + "released" + ], + "oneOf": [ + { + "enum": [ + "uploading", + "uploaded", + "md5summing", + "md5summed", + "validating", + "error", + "invalid", + "suppressed", + "redacted", + "live" + ] + }, + { + "enum": [ + "validated", + "submitted", + "released" + ] + } + ], + "public": [ + "live" + ], + "term": { + "description": "The current state of the object.\n" + } + }, + "submitter_id": { + "type": [ + "string", + "null" + ] + }, + "tissue_or_organ_of_origin": { + "term": { + "description": "Text term that describes the anatomic site of the tumor or disease.\n", + "termDef": { + "cde_id": 3427536, + "cde_version": 3, + "source": "caDSR", + "term": "Tumor Disease Anatomic Site", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3427536&version=3.0" + } + }, + "type": "string" + }, + "tumor_grade": { + "term": { + "description": "Numeric value to express the degree of abnormality of cancer cells, a measure of differentiation and aggressiveness.\n", + "termDef": { + "cde_id": 2785839, + "cde_version": 2, + "source": "caDSR", + "term": "Neoplasm Histologic Grade", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2785839&version=2.0" + } + }, + "type": "string" + }, + "tumor_stage": { + "term": { + "description": "The extent of a cancer in the body. Staging is usually based on the size of the tumor, whether lymph nodes contain cancer, and whether the cancer has spread from the original site to other parts of the body. The accepted values for tumor_stage depend on the tumor site, type, and accepted staging system. These items should accompany the tumor_stage value as associated metadata.\n", + "termDef": { + "cde_id": "C16899", + "cde_version": null, + "source": "NCIt", + "term": "Tumor Stage", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/pages/concept_details.jsf?dictionary=NCI%20Thesaurus&code=C16899" + } + }, + "type": "string" + }, + "type": { + "type": "string" + }, + "updated_datetime": { + "oneOf": [ + { + "format": "date-time", + "type": "string" + }, + { + "type": "null" + } + ], + "term": { + "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" + } + }, + "vascular_invasion_present": { + "enum": [ + "Yes", + "No", + "Unknown", + "Not Reported", + "Not Allowed To Collect" + ], + "term": { + "description": "The yes/no indicator to ask if large vessel or venous invasion was detected by surgery or presence in a tumor specimen.\n", + "termDef": { + "cde_id": 64358, + "cde_version": 3, + "source": "caDSR", + "term": "Tumor Vascular Invasion Ind-3", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=64358&version=3.0" + } + } + }, + "vital_status": { + "enum": [ + "alive", + "dead", + "lost to follow-up", + "unknown", + "not reported", + "Not Allowed To Collect", + "pending" + ], + "term": { + "description": "The survival state of the person registered on the protocol.\n", + "termDef": { + "cde_id": 5, + "cde_version": 5, + "source": "caDSR", + "term": "Patient Vital Status", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=5&version=5.0" + } + } + }, + "year_of_diagnosis": { + "term": { + "description": "Numeric value to represent the year of an individual's initial pathologic diagnosis of cancer.\n", + "termDef": { + "cde_id": 2896960, + "cde_version": 1, + "source": "caDSR", + "term": "Year of initial pathologic diagnosis", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2896960&version=1.0" + } + }, + "type": [ + "number", + "null" + ] + } + }, + "required": [ + "age_at_diagnosis", + "days_to_last_follow_up", + "vital_status", + "primary_diagnosis", + "morphology", + "tissue_or_organ_of_origin", + "site_of_resection_or_biopsy", + "classification_of_tumor", + "tumor_stage", + "tumor_grade", + "progression_or_recurrence", + "days_to_recurrence", + "days_to_last_known_disease_status", + "last_known_disease_status" + ], + "submittable": true, + "systemProperties": [ + "id", + "project_id", + "state", + "created_datetime", + "updated_datetime" + ], + "title": "Diagnosis", + "type": "object", + "uniqueKeys": [ + [ + "id" + ], + [ + "project_id", + "submitter_id" + ] + ], + "validators": null + }, + "experiment": { + "$schema": "http://json-schema.org/draft-04/schema#", + "additionalProperties": false, + "category": "administrative", + "description": "A coordinated set of actions and observations designed to generate data, with the ultimate goal of discovery or hypothesis testing.\n", + "id": "experiment", + "links": [ + { + "backref": "experiments", + "label": "performed_for", + "multiplicity": "many_to_one", + "name": "projects", + "required": true, + "target_type": "project" + } + ], + "namespace": "http://bloodprofilingatlas.org/bpa/", + "program": "*", + "project": "*", + "properties": { + "associated_experiment": { + "description": "The submitter_id for any experiment with which this experiment is associated, paired, or matched.", + "type": [ + "string" + ] + }, + "copy_numbers_identified": { + "description": "Are copy number variations identified in this experiment?", + "type": "boolean" + }, + "created_datetime": { + "oneOf": [ + { + "format": "date-time", + "type": "string" + }, + { + "type": "null" + } + ], + "term": { + "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" + } + }, + "data_description": { + "description": "Brief description of the data being provided for this experiment.", + "type": "string" + }, + "experimental_description": { + "description": "A brief description of the experiment being performed.", + "type": [ + "string" + ] + }, + "experimental_intent": { + "description": "Summary of the goals the experiment is designed to discover.", + "type": [ + "string" + ] + }, + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "systemAlias": "node_id", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "indels_identified": { + "description": "Are indels identified in this experiment?", + "type": "boolean" + }, + "marker_panel_description": { + "description": "Brief description of the marker panel used in this experiment.", + "type": "string" + }, + "number_experimental_group": { + "description": "The number denoting this experiment's place within the group within the whole.", + "type": [ + "integer" + ] + }, + "number_samples_per_experimental_group": { + "description": "The number of samples contained within this experimental group.", + "type": [ + "integer" + ] + }, + "project_id": { + "term": { + "description": "Unique ID for any specific defined piece of work that is undertaken or attempted to meet a single requirement.\n" + }, + "type": "string" + }, + "projects": { + "anyOf": [ + { + "items": { + "additionalProperties": true, + "maxItems": 1, + "minItems": 1, + "properties": { + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "submitter_id": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + { + "additionalProperties": true, + "properties": { + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "submitter_id": { + "type": "string" + } + }, + "type": "object" + } + ] + }, + "somatic_mutations_identified": { + "description": "Are somatic mutations identified for this experiment?", + "type": "boolean" + }, + "state": { + "default": "validated", + "downloadable": [ + "uploaded", + "md5summed", + "validating", + "validated", + "error", + "invalid", + "released" + ], + "oneOf": [ + { + "enum": [ + "uploading", + "uploaded", + "md5summing", + "md5summed", + "validating", + "error", + "invalid", + "suppressed", + "redacted", + "live" + ] + }, + { + "enum": [ + "validated", + "submitted", + "released" + ] + } + ], + "public": [ + "live" + ], + "term": { + "description": "The current state of the object.\n" + } + }, + "submitter_id": { + "type": [ + "string", + "null" + ] + }, + "type": { + "enum": [ + "experiment" + ] + }, + "type_of_data": { + "description": "Is the data raw or processed?", + "enum": [ + "Raw", + "Processed" + ] + }, + "type_of_sample": { + "description": "String indicator identifying the types of samples as contrived or clinical.", + "type": [ + "string" + ] + }, + "type_of_specimen": { + "description": "Broad description of the specimens used in the experiment.", + "type": [ + "string" + ] + }, + "updated_datetime": { + "oneOf": [ + { + "format": "date-time", + "type": "string" + }, + { + "type": "null" + } + ], + "term": { + "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" + } + } + }, + "required": [ + "submitter_id", + "projects" + ], + "submittable": true, + "systemProperties": [ + "id", + "project_id", + "created_datetime", + "updated_datetime", + "state" + ], + "title": "Experiment", + "type": "object", + "uniqueKeys": [ + [ + "id" + ], + [ + "project_id", + "submitter_id" + ] + ], + "validators": null + }, + "experimental_metadata": { + "$schema": "http://json-schema.org/draft-04/schema#", + "additionalProperties": false, + "category": "metadata_file", + "description": "Data file containing the metadata for the experiment performed.\n", + "id": "experimental_metadata", + "links": [ + { + "backref": "experiment_metadata_files", + "label": "derived_from", + "multiplicity": "many_to_many", + "name": "experiments", + "required": false, + "target_type": "experiment" + } + ], + "namespace": "http://gdc.nci.nih.gov", + "program": "*", + "project": "*", + "properties": { + "created_datetime": { + "oneOf": [ + { + "format": "date-time", + "type": "string" + }, + { + "type": "null" + } + ], + "term": { + "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" + } + }, + "data_category": { + "term": { + "description": "Broad categorization of the contents of the data file.\n" + }, + "type": [ + "string" + ] + }, + "data_format": { + "term": { + "description": "Format of the data files.\n" + }, + "type": [ + "string" + ] + }, + "data_type": { + "enum": [ + "Experimental Metadata" + ], + "term": { + "description": "Specific content type of the data file.\n" + } + }, + "error_type": { + "enum": [ + "file_size", + "file_format", + "md5sum" + ], + "term": { + "description": "Type of error for the data file object.\n" + } + }, + "experiments": { + "anyOf": [ + { + "items": { + "additionalProperties": true, + "maxItems": 1, + "minItems": 1, + "properties": { + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "submitter_id": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + { + "additionalProperties": true, + "properties": { + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "submitter_id": { + "type": "string" + } + }, + "type": "object" + } + ] + }, + "file_name": { + "term": { + "description": "The name (or part of a name) of a file (of any type).\n" + }, + "type": "string" + }, + "file_size": { + "term": { + "description": "The size of the data file (object) in bytes.\n" + }, + "type": "integer" + }, + "file_state": { + "default": "registered", + "enum": [ + "registered", + "uploading", + "uploaded", + "validating", + "validated", + "submitted", + "processing", + "processed", + "released", + "error" + ], + "term": { + "description": "The current state of the data file object.\n" + } + }, + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "systemAlias": "node_id", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "md5sum": { + "pattern": "^[a-f0-9]{32}$", + "term": { + "description": "The 128-bit hash value expressed as a 32 digit hexadecimal number used as a file's digital fingerprint.\n" + }, + "type": "string" + }, + "object_id": { + "description": "The GUID of the object in the index service.", + "type": "string" + }, + "project_id": { + "term": { + "description": "Unique ID for any specific defined piece of work that is undertaken or attempted to meet a single requirement.\n" + }, + "type": "string" + }, + "state": { + "default": "validated", + "downloadable": [ + "uploaded", + "md5summed", + "validating", + "validated", + "error", + "invalid", + "released" + ], + "oneOf": [ + { + "enum": [ + "uploading", + "uploaded", + "md5summing", + "md5summed", + "validating", + "error", + "invalid", + "suppressed", + "redacted", + "live" + ] + }, + { + "enum": [ + "validated", + "submitted", + "released" + ] + } + ], + "public": [ + "live" + ], + "term": { + "description": "The current state of the object.\n" + } + }, + "state_comment": { + "description": "Optional comment about why the file is in the current state, mainly for invalid state.\n", + "type": "string" + }, + "submitter_id": { + "description": "The file ID assigned by the submitter.", + "type": [ + "string", + "null" + ] + }, + "type": { + "enum": [ + "experimental_metadata" + ] + }, + "updated_datetime": { + "oneOf": [ + { + "format": "date-time", + "type": "string" + }, + { + "type": "null" + } + ], + "term": { + "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" + } + } + }, + "required": [ + "submitter_id", + "file_name", + "file_size", + "md5sum", + "data_category", + "data_type", + "data_format" + ], + "submittable": true, + "systemProperties": [ + "id", + "project_id", + "created_datetime", + "updated_datetime", + "state", + "file_state", + "error_type" + ], + "title": "Experimental Metadata", + "type": "object", + "uniqueKeys": [ + [ + "id" + ], + [ + "project_id", + "submitter_id" + ] + ], + "validators": null + }, + "exposure": { + "$schema": "http://json-schema.org/draft-04/schema#", + "additionalProperties": false, + "category": "clinical", + "description": "Clinically relevant patient information not immediately resulting from genetic predispositions.\n", + "id": "exposure", + "links": [ + { + "backref": "exposures", + "label": "describes", + "multiplicity": "many_to_one", + "name": "cases", + "required": true, + "target_type": "case" + } + ], + "namespace": "http://gdc.nci.nih.gov", + "preferred": [ + "cigarettes_per_day", + "years_smoked" + ], + "program": "*", + "project": "*", + "properties": { + "alcohol_history": { + "term": { + "description": "A response to a question that asks whether the participant has consumed at least 12 drinks of any kind of alcoholic beverage in their lifetime.\n", + "termDef": { + "cde_id": 2201918, + "cde_version": 1, + "source": "caDSR", + "term": "Alcohol Lifetime History Indicator", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2201918&version=1.0" + } + }, + "type": "string" + }, + "alcohol_intensity": { + "term": { + "description": "Category to describe the patient's current level of alcohol use as self-reported by the patient.\n", + "termDef": { + "cde_id": 3457767, + "cde_version": 1, + "source": "caDSR", + "term": "Person Self-Report Alcoholic Beverage Exposure Category", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3457767&version=1.0" + } + }, + "type": "string" + }, + "bmi": { + "term": { + "description": "The body mass divided by the square of the body height expressed in units of kg/m^2.\n", + "termDef": { + "cde_id": 4973892, + "cde_version": 1, + "source": "caDSR", + "term": "Body Mass Index (BMI)", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=4973892&version=1.0" + } + }, + "type": "number" + }, + "cases": { + "anyOf": [ + { + "items": { + "additionalProperties": true, + "maxItems": 1, + "minItems": 1, + "properties": { + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "submitter_id": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + { + "additionalProperties": true, + "properties": { + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "submitter_id": { + "type": "string" + } + }, + "type": "object" + } + ] + }, + "cigarettes_per_day": { + "term": { + "description": "The average number of cigarettes smoked per day.\n", + "termDef": { + "cde_id": 2001716, + "cde_version": 4, + "source": "caDSR", + "term": "Smoking Use Average Number", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2001716&version=4.0" + } + }, + "type": "number" + }, + "created_datetime": { + "oneOf": [ + { + "format": "date-time", + "type": "string" + }, + { + "type": "null" + } + ], + "term": { + "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" + } + }, + "height": { + "term": { + "description": "The height of the patient in centimeters.\n", + "termDef": { + "cde_id": 649, + "cde_version": 4.1, + "source": "caDSR", + "term": "Patient Height Measurement", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=649&version=4.1" + } + }, + "type": "number" + }, + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "systemAlias": "node_id", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "pack_years_smoked": { + "term": { + "description": "Numeric computed value to represent lifetime tobacco exposure defined as number of cigarettes smoked per day x number of years smoked divided by 20.\n", + "termDef": { + "cde_id": 2955385, + "cde_version": 1, + "source": "caDSR", + "term": "Person Cigarette Smoking History Pack Year Value", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2955385&version=1.0" + } + }, + "type": "number" + }, + "project_id": { + "term": { + "description": "Unique ID for any specific defined piece of work that is undertaken or attempted to meet a single requirement.\n" + }, + "type": "string" + }, + "state": { + "default": "validated", + "downloadable": [ + "uploaded", + "md5summed", + "validating", + "validated", + "error", + "invalid", + "released" + ], + "oneOf": [ + { + "enum": [ + "uploading", + "uploaded", + "md5summing", + "md5summed", + "validating", + "error", + "invalid", + "suppressed", + "redacted", + "live" + ] + }, + { + "enum": [ + "validated", + "submitted", + "released" + ] + } + ], + "public": [ + "live" + ], + "term": { + "description": "The current state of the object.\n" + } + }, + "submitter_id": { + "type": [ + "string", + "null" + ] + }, + "tobacco_smoking_onset_year": { + "term": { + "description": "The year in which the participant began smoking.\n", + "termDef": { + "cde_id": 2228604, + "cde_version": 1, + "source": "caDSR", + "term": "Started Smoking Year", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2228604&version=1.0" + } + }, + "type": "integer" + }, + "tobacco_smoking_quit_year": { + "term": { + "description": "The year in which the participant quit smoking.\n", + "termDef": { + "cde_id": 2228610, + "cde_version": 1, + "source": "caDSR", + "term": "Stopped Smoking Year", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2228610&version=1.0" + } + }, + "type": "integer" + }, + "tobacco_smoking_status": { + "enum": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + "Unknown", + "Not Reported", + "Not Allowed To Collect" + ], + "term": { + "description": "Category describing current smoking status and smoking history as self-reported by a patient.\n", + "termDef": { + "cde_id": 2181650, + "cde_version": 1, + "source": "caDSR", + "term": "Patient Smoking History Category", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2181650&version=1.0" + } + } + }, + "type": { + "enum": [ + "exposure" + ] + }, + "updated_datetime": { + "oneOf": [ + { + "format": "date-time", + "type": "string" + }, + { + "type": "null" + } + ], + "term": { + "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" + } + }, + "weight": { + "term": { + "description": "The weight of the patient measured in kilograms.\n", + "termDef": { + "cde_id": 651, + "cde_version": 4, + "source": "caDSR", + "term": "Patient Weight Measurement", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=651&version=4.0" + } + }, + "type": "number" + }, + "years_smoked": { + "term": { + "description": "Numeric value (or unknown) to represent the number of years a person has been smoking.\n", + "termDef": { + "cde_id": 3137957, + "cde_version": 1, + "source": "caDSR", + "term": "Person Smoking Duration Year Count", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3137957&version=1.0" + } + }, + "type": "number" + } + }, + "submittable": true, + "systemProperties": [ + "id", + "project_id", + "state", + "created_datetime", + "updated_datetime" + ], + "title": "Exposure", + "type": "object", + "uniqueKeys": [ + [ + "id" + ], + [ + "project_id", + "submitter_id" + ] + ], + "validators": null + }, + "family_history": { + "$schema": "http://json-schema.org/draft-04/schema#", + "additionalProperties": false, + "category": "clinical", + "description": "Record of a patient's background regarding cancer events of blood relatives.\n", + "id": "family_history", + "links": [ + { + "backref": "family_histories", + "label": "describes", + "multiplicity": "many_to_one", + "name": "cases", + "required": true, + "target_type": "case" + } + ], + "namespace": "http://gdc.nci.nih.gov", + "program": "*", + "project": "*", + "properties": { + "cases": { + "anyOf": [ + { + "items": { + "additionalProperties": true, + "maxItems": 1, + "minItems": 1, + "properties": { + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "submitter_id": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + { + "additionalProperties": true, + "properties": { + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "submitter_id": { + "type": "string" + } + }, + "type": "object" + } + ] + }, + "created_datetime": { + "oneOf": [ + { + "format": "date-time", + "type": "string" + }, + { + "type": "null" + } + ], + "term": { + "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" + } + }, + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "systemAlias": "node_id", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "project_id": { + "term": { + "description": "Unique ID for any specific defined piece of work that is undertaken or attempted to meet a single requirement.\n" + }, + "type": "string" + }, + "relationship_age_at_diagnosis": { + "term": { + "description": "The age (in years) when the patient's relative was first diagnosed.\n", + "termDef": { + "cde_id": 5300571, + "cde_version": 1, + "source": "caDSR", + "term": "Relative Diagnosis Age Value", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=5300571&version=1.0" + } + }, + "type": "number" + }, + "relationship_gender": { + "enum": [ + "female", + "male", + "unknown", + "unspecified", + "not reported" + ], + "term": { + "description": "Text designations that identify gender. Gender is described as the assemblage of properties that distinguish people on the basis of their societal roles. [Explanatory Comment 1: Identification of gender is based upon self-report and may come from a form, questionnaire, interview, etc.]\n", + "termDef": { + "cde_id": 2200604, + "cde_version": 3, + "source": "caDSR", + "term": "Person Gender Text Type", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2200604&version=3.0" + } + } + }, + "relationship_primary_diagnosis": { + "term": { + "description": "Text term for the structural pattern of cancer cells used to define a microscopic diagnosis.\n", + "termDef": { + "cde_id": 3081934, + "cde_version": 3, + "source": "caDSR", + "term": "Neoplasm Histologic Type Name", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3081934&version=3.0" + } + }, + "type": "string" + }, + "relationship_type": { + "term": { + "description": "The subgroup that describes the state of connectedness between members of the unit of society organized around kinship ties.\n", + "termDef": { + "cde_id": 2690165, + "cde_version": 2, + "source": "caDSR", + "term": "Family Member Relationship Type", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2690165&version=2.0" + } + }, + "type": "string" + }, + "relative_with_cancer_history": { + "enum": [ + "yes", + "no", + "unknown", + "not reported" + ], + "term": { + "description": "Indicator to signify whether or not an individual's biological relative has been diagnosed with another type of cancer.\n", + "termDef": { + "cde_id": 3901752, + "cde_version": 1, + "source": "caDSR", + "term": "Other Cancer Biological Relative History Indicator", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3901752&version=1.0" + } + } + }, + "state": { + "default": "validated", + "downloadable": [ + "uploaded", + "md5summed", + "validating", + "validated", + "error", + "invalid", + "released" + ], + "oneOf": [ + { + "enum": [ + "uploading", + "uploaded", + "md5summing", + "md5summed", + "validating", + "error", + "invalid", + "suppressed", + "redacted", + "live" + ] + }, + { + "enum": [ + "validated", + "submitted", + "released" + ] + } + ], + "public": [ + "live" + ], + "term": { + "description": "The current state of the object.\n" + } + }, + "submitter_id": { + "type": [ + "string", + "null" + ] + }, + "type": { + "enum": [ + "family_history" + ] + }, + "updated_datetime": { + "oneOf": [ + { + "format": "date-time", + "type": "string" + }, + { + "type": "null" + } + ], + "term": { + "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" + } + } + }, + "submittable": true, + "systemProperties": [ + "id", + "project_id", + "state", + "created_datetime", + "updated_datetime" + ], + "title": "Family History", + "type": "object", + "uniqueKeys": [ + [ + "id" + ], + [ + "project_id", + "submitter_id" + ] + ], + "validators": null + }, + "keyword": { + "$schema": "http://json-schema.org/draft-04/schema#", + "additionalProperties": false, + "category": "administrative", + "description": "A keyword for a project.", + "id": "keyword", + "links": [ + { + "backref": "keywords", + "label": "describe", + "multiplicity": "many_to_many", + "name": "projects", + "required": true, + "target_type": "project" + } + ], + "namespace": "http://gdc.nci.nih.gov", + "program": "*", + "project": "*", + "properties": { + "created_datetime": { + "oneOf": [ + { + "format": "date-time", + "type": "string" + }, + { + "type": "null" + } + ], + "term": { + "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" + } + }, + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "systemAlias": "node_id", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "keyword_name": { + "description": "The name of the keyword.", + "type": "string" + }, + "project_id": { + "type": "string" + }, + "projects": { + "anyOf": [ + { + "items": { + "additionalProperties": true, + "minItems": 1, + "properties": { + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "submitter_id": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + { + "additionalProperties": true, + "properties": { + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "submitter_id": { + "type": "string" + } + }, + "type": "object" + } + ] + }, + "state": { + "default": "validated", + "downloadable": [ + "uploaded", + "md5summed", + "validating", + "validated", + "error", + "invalid", + "released" + ], + "oneOf": [ + { + "enum": [ + "uploading", + "uploaded", + "md5summing", + "md5summed", + "validating", + "error", + "invalid", + "suppressed", + "redacted", + "live" + ] + }, + { + "enum": [ + "validated", + "submitted", + "released" + ] + } + ], + "public": [ + "live" + ], + "term": { + "description": "The current state of the object.\n" + } + }, + "submitter_id": { + "type": [ + "string", + "null" + ] + }, + "type": { + "enum": [ + "keyword" + ] + }, + "updated_datetime": { + "oneOf": [ + { + "format": "date-time", + "type": "string" + }, + { + "type": "null" + } + ], + "term": { + "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" + } + } + }, + "required": [ + "submitter_id", + "projects" + ], + "submittable": true, + "systemProperties": [ + "id", + "project_id", + "state", + "created_datetime", + "updated_datetime" + ], + "title": "Keyword", + "type": "object", + "uniqueKeys": [ + [ + "id" + ], + [ + "project_id", + "submitter_id" + ] + ], + "validators": null + }, + "metaschema": { + "$schema": "http://json-schema.org/draft-04/schema#", + "allOf": [ + { + "$ref": "http://json-schema.org/draft-04/schema#" + } + ], + "definitions": { + "link": { + "additionalProperties": false, + "properties": { + "backref": { + "$ref": "#/field" + }, + "label": { + "$ref": "#/field" + }, + "multiplicity": { + "enum": [ + "one_to_one", + "one_to_many", + "many_to_one", + "many_to_many" + ], + "type": "string" + }, + "name": { + "$ref": "#/field" + }, + "required": { + "type": "boolean" + }, + "target_type": { + "$ref": "#/field" + } + }, + "required": [ + "name", + "target_type", + "backref", + "label", + "multiplicity", + "required" + ], + "type": "object" + }, + "link_subgroup": { + "properties": { + "exclusive": { + "type": "boolean" + }, + "required": { + "type": "boolean" + }, + "subgroup": { + "items": { + "$ref": "#/definitions/link" + }, + "type": "array" + } + }, + "required": [ + "exclusive", + "required", + "subgroup" + ] + }, + "validator_def": { + "properties": { + "link_to_type": { + "type": "string" + }, + "multiplicity": { + "enum": [ + "one_to_one", + "one_to_many", + "many_to_one", + "many_to_many" + ], + "type": "string" + } + }, + "required": [ + "property", + "function" + ], + "title": "Define a validator to be used on a property", + "type": "object" + } + }, + "field": { + "pattern": "^[_a-zA-Z0-9]*$", + "type": "string" + }, + "id": "metaschema", + "properties": { + "category": { + "$ref": "#/field", + "enum": [ + "administrative", + "analysis", + "biospecimen", + "clinical", + "data", + "data_bundle", + "data_file", + "index_file", + "metadata_file", + "notation", + "qc_bundle", + "TBD" + ] + }, + "links": { + "items": { + "oneOf": [ + { + "$ref": "#/definitions/link" + }, + { + "$ref": "#/definitions/link_subgroup" + } + ] + }, + "title": "Define a link to other GDC entities", + "type": "array" + }, + "properties": { + "additionalProperties": false, + "patternProperties": { + "^[_a-zA-Z0-9]*$": { + "type": "object" + } + }, + "type": "object" + }, + "submittable": { + "type": "boolean" + }, + "system_properties": { + "type": "array" + }, + "unique_keys": { + "items": { + "items": { + "type": "string" + }, + "type": "array" + }, + "type": "array" + }, + "validators": { + "items": { + "$ref": "#/definitions/validator_def" + }, + "type": [ + "array", + "null" + ] + } + }, + "required": [ + "category", + "program", + "project", + "uniqueKeys", + "links", + "validators", + "systemProperties", + "id" + ], + "title": "GDC JSON schema extension" + }, + "program": { + "$schema": "http://json-schema.org/draft-04/schema#", + "additionalProperties": false, + "category": "administrative", + "description": "A broad framework of goals to be achieved. (NCIt C52647)\n", + "id": "program", + "links": [], + "program": "*", + "project": "*", + "properties": { + "dbgap_accession_number": { + "description": "The dbgap accession number provided for the program.", + "type": "string" + }, + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "systemAlias": "node_id", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "name": { + "description": "Full name/title of the program.", + "type": "string" + }, + "type": { + "type": "string" + } + }, + "required": [ + "name", + "dbgap_accession_number" + ], + "submittable": false, + "systemProperties": [ + "id" + ], + "title": "Program", + "type": "object", + "uniqueKeys": [ + [ + "id" + ], + [ + "name" + ] + ], + "validators": null + }, + "project": { + "$schema": "http://json-schema.org/draft-04/schema#", + "additionalProperties": false, + "category": "administrative", + "constraints": null, + "description": "Any specifically defined piece of work that is undertaken or attempted to meet a single requirement. (NCIt C47885)\n", + "id": "project", + "links": [ + { + "backref": "projects", + "label": "member_of", + "multiplicity": "many_to_one", + "name": "programs", + "required": true, + "target_type": "program" + } + ], + "program": "*", + "project": "*", + "properties": { + "availability_mechanism": { + "description": "Mechanism by which the project will be made avilable.", + "type": "string" + }, + "availability_type": { + "description": "Is the project open or restricted?", + "enum": [ + "Open", + "Restricted" + ] + }, + "code": { + "description": "Unique identifier for the project.", + "type": "string" + }, + "date_collected": { + "description": "The date or date range in which the project data was collected.", + "type": "string" + }, + "dbgap_accession_number": { + "description": "The dbgap accession number provided for the project.", + "type": "string" + }, + "id": { + "description": "UUID for the project.", + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "systemAlias": "node_id", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "intended_release_date": { + "description": "Tracks a Project's intended release date.", + "format": "date-time", + "type": "string" + }, + "investigator_affiliation": { + "description": "The investigator's affiliation with respect to a research institution.", + "type": "string" + }, + "investigator_name": { + "description": "Name of the principal investigator for the project.", + "type": "string" + }, + "name": { + "description": "Display name/brief description for the project.", + "type": "string" + }, + "programs": { + "anyOf": [ + { + "items": { + "additionalProperties": true, + "maxItems": 1, + "minItems": 1, + "properties": { + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "submitter_id": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + { + "additionalProperties": true, + "properties": { + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "submitter_id": { + "type": "string" + } + }, + "type": "object" + } + ], + "description": "Indicates that the project is logically part of the indicated project.\n" + }, + "releasable": { + "default": false, + "description": "A project can only be released by the user when `releasable` is true.\n", + "type": "boolean" + }, + "released": { + "default": false, + "description": "To release a project is to tell the GDC to include all submitted\nentities in the next GDC index.\n", + "type": "boolean" + }, + "state": { + "default": "open", + "description": "The possible states a project can be in. All but `open` are\nequivalent to some type of locked state.\n", + "enum": [ + "open", + "review", + "submitted", + "processing", + "closed", + "legacy" + ] + }, + "support_id": { + "description": "The ID of the source providing support/grant resources.", + "type": "string" + }, + "support_source": { + "description": "The name of source providing support/grant resources.", + "type": "string" + }, + "type": { + "type": "string" + } + }, + "required": [ + "code", + "name", + "programs" + ], + "submittable": true, + "systemProperties": [ + "id", + "state", + "released", + "releasable", + "intended_release_date" + ], + "title": "Project", + "type": "object", + "uniqueKeys": [ + [ + "id" + ], + [ + "code" + ] + ], + "validators": null + }, + "publication": { + "$schema": "http://json-schema.org/draft-04/schema#", + "additionalProperties": false, + "category": "administrative", + "description": "Publication for a project.", + "id": "publication", + "links": [ + { + "backref": "publications", + "label": "refers_to", + "multiplicity": "many_to_many", + "name": "projects", + "required": true, + "target_type": "project" + } + ], + "namespace": "http://gdc.nci.nih.gov", + "program": "*", + "project": "*", + "properties": { + "created_datetime": { + "oneOf": [ + { + "format": "date-time", + "type": "string" + }, + { + "type": "null" + } + ], + "term": { + "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" + } + }, + "doi": { + "type": "string" + }, + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "systemAlias": "node_id", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "pmid": { + "type": "string" + }, + "project_id": { + "type": "string" + }, + "projects": { + "anyOf": [ + { + "items": { + "additionalProperties": true, + "minItems": 1, + "properties": { + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "submitter_id": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + { + "additionalProperties": true, + "properties": { + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "submitter_id": { + "type": "string" + } + }, + "type": "object" + } + ] + }, + "state": { + "default": "validated", + "downloadable": [ + "uploaded", + "md5summed", + "validating", + "validated", + "error", + "invalid", + "released" + ], + "oneOf": [ + { + "enum": [ + "uploading", + "uploaded", + "md5summing", + "md5summed", + "validating", + "error", + "invalid", + "suppressed", + "redacted", + "live" + ] + }, + { + "enum": [ + "validated", + "submitted", + "released" + ] + } + ], + "public": [ + "live" + ], + "term": { + "description": "The current state of the object.\n" + } + }, + "submitter_id": { + "type": [ + "string", + "null" + ] + }, + "type": { + "enum": [ + "publication" + ] + }, + "updated_datetime": { + "oneOf": [ + { + "format": "date-time", + "type": "string" + }, + { + "type": "null" + } + ], + "term": { + "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" + } + } + }, + "required": [ + "submitter_id", + "projects" + ], + "submittable": true, + "systemProperties": [ + "id", + "project_id", + "state", + "created_datetime", + "updated_datetime" + ], + "title": "Publication", + "type": "object", + "uniqueKeys": [ + [ + "id" + ], + [ + "project_id", + "submitter_id" + ] + ], + "validators": null + }, + "read_group": { + "$schema": "http://json-schema.org/draft-04/schema#", + "additionalProperties": false, + "category": "biospecimen", + "description": "Sequencing reads from one lane of an NGS experiment.", + "id": "read_group", + "links": [ + { + "backref": "read_groups", + "label": "derived_from", + "multiplicity": "many_to_one", + "name": "aliquots", + "required": true, + "target_type": "aliquot" + } + ], + "namespace": "http://gdc.nci.nih.gov", + "program": "*", + "project": "*", + "properties": { + "RIN": { + "term": { + "description": "A numerical assessment of the integrity of RNA based on the entire electrophoretic trace of the RNA sample including the presence or absence of degradation products.\n", + "termDef": { + "cde_id": 5278775, + "cde_version": 1, + "source": "caDSR", + "term": "Biospecimen RNA Integrity Number Value", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=5278775&version=1.0" + } + }, + "type": "number" + }, + "adapter_name": { + "term": { + "description": "Name of the sequencing adapter.\n" + }, + "type": "string" + }, + "adapter_sequence": { + "term": { + "description": "Base sequence of the sequencing adapter.\n" + }, + "type": "string" + }, + "aliquots": { + "anyOf": [ + { + "items": { + "additionalProperties": true, + "maxItems": 1, + "minItems": 1, + "properties": { + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "submitter_id": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + { + "additionalProperties": true, + "properties": { + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "submitter_id": { + "type": "string" + } + }, + "type": "object" + } + ] + }, + "barcoding_applied": { + "description": "True/False: was barcoding applied?", + "type": "boolean" + }, + "base_caller_name": { + "term": { + "description": "Name of the base caller.\n" + }, + "type": "string" + }, + "base_caller_version": { + "term": { + "description": "Version of the base caller.\n" + }, + "type": "string" + }, + "created_datetime": { + "oneOf": [ + { + "format": "date-time", + "type": "string" + }, + { + "type": "null" + } + ], + "term": { + "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" + } + }, + "experiment_name": { + "term": { + "description": "Submitter-defined name for the experiment.\n" + }, + "type": "string" + }, + "flow_cell_barcode": { + "term": { + "description": "Flow Cell Barcode.\n" + }, + "type": "string" + }, + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "includes_spike_ins": { + "term": { + "description": "Spike-in included?\n" + }, + "type": "boolean" + }, + "instrument_model": { + "enum": [ + "454 GS FLX Titanium", + "AB SOLiD 4", + "AB SOLiD 2", + "AB SOLiD 3", + "Complete Genomics", + "Illumina HiSeq X Ten", + "Illumina HiSeq X Five", + "Illumina Genome Analyzer II", + "Illumina Genome Analyzer IIx", + "Illumina HiSeq 2000", + "Illumina HiSeq 2500", + "Illumina HiSeq 4000", + "Illumina MiSeq", + "Illumina NextSeq", + "Ion Torrent PGM", + "Ion Torrent Proton", + "PacBio RS", + "Ion S5 XL System, Ion 530 Chip", + "Other" + ], + "terms": { + "description": "Numeric value that represents the sample dimension that is greater than the shortest dimension and less than the longest dimension, measured in millimeters.\n", + "termDef": { + "cde_id": 5432604, + "cde_version": 1, + "source": "caDSR", + "term": "Tissue Sample Intermediate Dimension Millimeter Measurement", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=5432604&version=1.0" + } + } + }, + "is_paired_end": { + "term": { + "description": "Are the reads paired end?\n" + }, + "type": "boolean" + }, + "library_name": { + "term": { + "description": "Name of the library.\n" + }, + "type": "string" + }, + "library_preparation_kit_catalog_number": { + "term": { + "description": "Catalog of Library Preparation Kit\n" + }, + "type": "string" + }, + "library_preparation_kit_name": { + "term": { + "description": "Name of Library Preparation Kit\n" + }, + "type": "string" + }, + "library_preparation_kit_vendor": { + "term": { + "description": "Vendor of Library Preparation Kit\n" + }, + "type": "string" + }, + "library_preparation_kit_version": { + "term": { + "description": "Version of Library Preparation Kit\n" + }, + "type": "string" + }, + "library_selection": { + "enum": [ + "Hybrid_Selection", + "PCR", + "Affinity_Enrichment", + "Poly-T_Enrichment", + "RNA_Depletion", + "Other" + ], + "term": { + "description": "Library Selection Method\n" + } + }, + "library_strand": { + "enum": [ + "Unstranded", + "First_Stranded", + "Second_Stranded" + ], + "term": { + "description": "Library stranded-ness.\n" + } + }, + "library_strategy": { + "enum": [ + "WGS", + "WXS", + "RNA-Seq", + "ChIP-Seq", + "miRNA-Seq", + "Bisulfite-Seq", + "Validation", + "Amplicon", + "Other" + ], + "term": { + "description": "Library strategy.\n" + } + }, + "platform": { + "enum": [ + "Illumina", + "SOLiD", + "LS454", + "Ion Torrent", + "Complete Genomics", + "PacBio", + "Other" + ], + "term": { + "description": "Name of the platform used to obtain data.\n" + } + }, + "project_id": { + "term": { + "description": "Unique ID for any specific defined piece of work that is undertaken or attempted to meet a single requirement.\n" + }, + "type": "string" + }, + "read_group_name": { + "description": "Read Group Name", + "type": "string" + }, + "read_length": { + "type": "integer" + }, + "sequencing_center": { + "term": { + "description": "Name of the center that provided the sequence files.\n" + }, + "type": "string" + }, + "sequencing_date": { + "oneOf": [ + { + "format": "date-time", + "type": "string" + }, + { + "type": "null" + } + ], + "term": { + "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" + } + }, + "size_selection_range": { + "term": { + "description": "Range of size selection.\n" + }, + "type": "string" + }, + "spike_ins_concentration": { + "term": { + "description": "Spike in concentration.\n" + }, + "type": "string" + }, + "spike_ins_fasta": { + "term": { + "description": "Name of the FASTA file that contains the spike-in sequences.\n" + }, + "type": "string" + }, + "state": { + "default": "validated", + "downloadable": [ + "uploaded", + "md5summed", + "validating", + "validated", + "error", + "invalid", + "released" + ], + "oneOf": [ + { + "enum": [ + "uploading", + "uploaded", + "md5summing", + "md5summed", + "validating", + "error", + "invalid", + "suppressed", + "redacted", + "live" + ] + }, + { + "enum": [ + "validated", + "submitted", + "released" + ] + } + ], + "public": [ + "live" + ], + "term": { + "description": "The current state of the object.\n" + } + }, + "submitter_id": { + "type": "string" + }, + "target_capture_kit_catalog_number": { + "term": { + "description": "Catalog of Target Capture Kit.\n" + }, + "type": "string" + }, + "target_capture_kit_name": { + "term": { + "description": "Name of Target Capture Kit.\n" + }, + "type": "string" + }, + "target_capture_kit_target_region": { + "term": { + "description": "Target Capture Kit BED file.\n" + }, + "type": "string" + }, + "target_capture_kit_vendor": { + "term": { + "description": "Vendor of Target Capture Kit.\n" + }, + "type": "string" + }, + "target_capture_kit_version": { + "term": { + "description": "Version of Target Capture Kit.\n" + }, + "type": "string" + }, + "to_trim_adapter_sequence": { + "term": { + "description": "Does the user suggest adapter trimming?\n" + }, + "type": "boolean" + }, + "type": { + "enum": [ + "read_group" + ] + }, + "updated_datetime": { + "oneOf": [ + { + "format": "date-time", + "type": "string" + }, + { + "type": "null" + } + ], + "term": { + "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" + } + } + }, + "required": [ + "type", + "submitter_id", + "aliquots" + ], + "submittable": true, + "systemProperties": [ + "id", + "project_id", + "created_datetime", + "updated_datetime", + "state" + ], + "title": "Read Group", + "type": "object", + "uniqueKeys": [ + [ + "id" + ], + [ + "project_id", + "submitter_id" + ] + ], + "validators": null + }, + "read_group_qc": { + "$schema": "http://json-schema.org/draft-04/schema#", + "additionalProperties": false, + "category": "notation", + "description": "GDC QC run metadata.", + "id": "read_group_qc", + "links": [ + { + "exclusive": true, + "required": true, + "subgroup": [ + { + "backref": "read_group_qcs", + "label": "data_from", + "multiplicity": "one_to_one", + "name": "submitted_aligned_reads_files", + "required": false, + "target_type": "submitted_aligned_reads" + }, + { + "backref": "read_group_qcs", + "label": "data_from", + "multiplicity": "one_to_many", + "name": "submitted_unaligned_reads_files", + "required": false, + "target_type": "submitted_unaligned_reads" + } + ] + }, + { + "backref": "read_group_qcs", + "label": "generated_from", + "multiplicity": "many_to_one", + "name": "read_groups", + "required": true, + "target_type": "read_group" + } + ], + "namespace": "http://gdc.nci.nih.gov", + "program": "*", + "project": "*", + "properties": { + "adapter_content": { + "enum": [ + "FAIL", + "PASS", + "WARN" + ], + "term": { + "description": "State classification given by FASTQC for the metric. Metric specific details about the states are available on their website.\n", + "termDef": { + "cde_id": null, + "cde_version": null, + "source": "FastQC", + "term": "QC Metric State", + "term_url": "http://www.bioinformatics.babraham.ac.uk/projects/fastqc/Help/3%20Analysis%20Modules/" + } + } + }, + "basic_statistics": { + "enum": [ + "FAIL", + "PASS", + "WARN" + ], + "term": { + "description": "State classification given by FASTQC for the metric. Metric specific details about the states are available on their website.\n", + "termDef": { + "cde_id": null, + "cde_version": null, + "source": "FastQC", + "term": "QC Metric State", + "term_url": "http://www.bioinformatics.babraham.ac.uk/projects/fastqc/Help/3%20Analysis%20Modules/" + } + } + }, + "created_datetime": { + "oneOf": [ + { + "format": "date-time", + "type": "string" + }, + { + "type": "null" + } + ], + "term": { + "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" + } + }, + "encoding": { + "term": { + "description": "Version of ASCII encoding of quality values found in the file.\n", + "termDef": { + "cde_id": null, + "cde_version": null, + "source": "FastQC", + "term": "Encoding", + "term_url": "http://www.bioinformatics.babraham.ac.uk/projects/fastqc/Help/3%20Analysis%20Modules/1%20Basic%20Statistics.html" + } + }, + "type": "string" + }, + "fastq_name": { + "term": { + "description": "The name (or part of a name) of a file (of any type).\n" + }, + "type": "string" + }, + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "systemAlias": "node_id", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "kmer_content": { + "enum": [ + "FAIL", + "PASS", + "WARN" + ], + "term": { + "description": "State classification given by FASTQC for the metric. Metric specific details about the states are available on their website.\n", + "termDef": { + "cde_id": null, + "cde_version": null, + "source": "FastQC", + "term": "QC Metric State", + "term_url": "http://www.bioinformatics.babraham.ac.uk/projects/fastqc/Help/3%20Analysis%20Modules/" + } + } + }, + "overrepresented_sequences": { + "enum": [ + "FAIL", + "PASS", + "WARN" + ], + "term": { + "description": "State classification given by FASTQC for the metric. Metric specific details about the states are available on their website.\n", + "termDef": { + "cde_id": null, + "cde_version": null, + "source": "FastQC", + "term": "QC Metric State", + "term_url": "http://www.bioinformatics.babraham.ac.uk/projects/fastqc/Help/3%20Analysis%20Modules/" + } + } + }, + "per_base_n_content": { + "enum": [ + "FAIL", + "PASS", + "WARN" + ], + "term": { + "description": "State classification given by FASTQC for the metric. Metric specific details about the states are available on their website.\n", + "termDef": { + "cde_id": null, + "cde_version": null, + "source": "FastQC", + "term": "QC Metric State", + "term_url": "http://www.bioinformatics.babraham.ac.uk/projects/fastqc/Help/3%20Analysis%20Modules/" + } + } + }, + "per_base_sequence_content": { + "enum": [ + "FAIL", + "PASS", + "WARN" + ], + "term": { + "description": "State classification given by FASTQC for the metric. Metric specific details about the states are available on their website.\n", + "termDef": { + "cde_id": null, + "cde_version": null, + "source": "FastQC", + "term": "QC Metric State", + "term_url": "http://www.bioinformatics.babraham.ac.uk/projects/fastqc/Help/3%20Analysis%20Modules/" + } + } + }, + "per_base_sequence_quality": { + "enum": [ + "FAIL", + "PASS", + "WARN" + ], + "term": { + "description": "State classification given by FASTQC for the metric. Metric specific details about the states are available on their website.\n", + "termDef": { + "cde_id": null, + "cde_version": null, + "source": "FastQC", + "term": "QC Metric State", + "term_url": "http://www.bioinformatics.babraham.ac.uk/projects/fastqc/Help/3%20Analysis%20Modules/" + } + } + }, + "per_sequence_gc_content": { + "enum": [ + "FAIL", + "PASS", + "WARN" + ], + "term": { + "description": "State classification given by FASTQC for the metric. Metric specific details about the states are available on their website.\n", + "termDef": { + "cde_id": null, + "cde_version": null, + "source": "FastQC", + "term": "QC Metric State", + "term_url": "http://www.bioinformatics.babraham.ac.uk/projects/fastqc/Help/3%20Analysis%20Modules/" + } + } + }, + "per_sequence_quality_score": { + "enum": [ + "FAIL", + "PASS", + "WARN" + ], + "term": { + "description": "State classification given by FASTQC for the metric. Metric specific details about the states are available on their website.\n", + "termDef": { + "cde_id": null, + "cde_version": null, + "source": "FastQC", + "term": "QC Metric State", + "term_url": "http://www.bioinformatics.babraham.ac.uk/projects/fastqc/Help/3%20Analysis%20Modules/" + } + } + }, + "per_tile_sequence_quality": { + "enum": [ + "FAIL", + "PASS", + "WARN" + ], + "term": { + "description": "State classification given by FASTQC for the metric. Metric specific details about the states are available on their website.\n", + "termDef": { + "cde_id": null, + "cde_version": null, + "source": "FastQC", + "term": "QC Metric State", + "term_url": "http://www.bioinformatics.babraham.ac.uk/projects/fastqc/Help/3%20Analysis%20Modules/" + } + } + }, + "percent_aligned": { + "description": "The percent of reads with at least one reported alignment.", + "maximum": 100, + "minimum": 0, + "type": "integer" + }, + "percent_gc_content": { + "maximum": 100, + "minimum": 0, + "term": { + "description": "The overall %GC of all bases in all sequences.\n", + "termDef": { + "cde_id": null, + "cde_version": null, + "source": "FastQC", + "term": "%GC", + "term_url": "http://www.bioinformatics.babraham.ac.uk/projects/fastqc/Help/3%20Analysis%20Modules/1%20Basic%20Statistics.html" + } + }, + "type": "integer" + }, + "project_id": { + "term": { + "description": "Unique ID for any specific defined piece of work that is undertaken or attempted to meet a single requirement.\n" + }, + "type": "string" + }, + "read_groups": { + "anyOf": [ + { + "items": { + "additionalProperties": true, + "maxItems": 1, + "minItems": 1, + "properties": { + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "submitter_id": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + { + "additionalProperties": true, + "properties": { + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "submitter_id": { + "type": "string" + } + }, + "type": "object" + } + ] + }, + "sequence_duplication_levels": { + "enum": [ + "FAIL", + "PASS", + "WARN" + ], + "term": { + "description": "State classification given by FASTQC for the metric. Metric specific details about the states are available on their website.\n", + "termDef": { + "cde_id": null, + "cde_version": null, + "source": "FastQC", + "term": "QC Metric State", + "term_url": "http://www.bioinformatics.babraham.ac.uk/projects/fastqc/Help/3%20Analysis%20Modules/" + } + } + }, + "sequence_length_distribution": { + "enum": [ + "FAIL", + "PASS", + "WARN" + ], + "term": { + "description": "State classification given by FASTQC for the metric. Metric specific details about the states are available on their website.\n", + "termDef": { + "cde_id": null, + "cde_version": null, + "source": "FastQC", + "term": "QC Metric State", + "term_url": "http://www.bioinformatics.babraham.ac.uk/projects/fastqc/Help/3%20Analysis%20Modules/" + } + } + }, + "state": { + "default": "validated", + "downloadable": [ + "uploaded", + "md5summed", + "validating", + "validated", + "error", + "invalid", + "released" + ], + "oneOf": [ + { + "enum": [ + "uploading", + "uploaded", + "md5summing", + "md5summed", + "validating", + "error", + "invalid", + "suppressed", + "redacted", + "live" + ] + }, + { + "enum": [ + "validated", + "submitted", + "released" + ] + } + ], + "public": [ + "live" + ], + "term": { + "description": "The current state of the object.\n" + } + }, + "submitted_aligned_reads_files": { + "anyOf": [ + { + "items": { + "additionalProperties": true, + "maxItems": 1, + "minItems": 1, + "properties": { + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "submitter_id": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + { + "additionalProperties": true, + "properties": { + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "submitter_id": { + "type": "string" + } + }, + "type": "object" + } + ] + }, + "submitted_unaligned_reads_files": { + "anyOf": [ + { + "items": { + "additionalProperties": true, + "minItems": 1, + "properties": { + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "submitter_id": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + { + "additionalProperties": true, + "properties": { + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "submitter_id": { + "type": "string" + } + }, + "type": "object" + } + ] + }, + "submitter_id": { + "description": "The file ID assigned by the submitter.", + "type": [ + "string", + "null" + ] + }, + "total_aligned_reads": { + "description": "The total number of reads with at least one reported alignment.", + "type": "integer" + }, + "total_sequences": { + "term": { + "description": "A count of the total number of sequences processed.\n", + "termDef": { + "cde_id": null, + "cde_version": null, + "source": "FastQC", + "term": "Total Sequences", + "term_url": "http://www.bioinformatics.babraham.ac.uk/projects/fastqc/Help/3%20Analysis%20Modules/1%20Basic%20Statistics.html" + } + }, + "type": "integer" + }, + "type": { + "enum": [ + "read_group_qc" + ] + }, + "updated_datetime": { + "oneOf": [ + { + "format": "date-time", + "type": "string" + }, + { + "type": "null" + } + ], + "term": { + "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" + } + }, + "workflow_end_datetime": { + "oneOf": [ + { + "format": "date-time", + "type": "string" + }, + { + "type": "null" + } + ], + "term": { + "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" + } + }, + "workflow_link": { + "description": "Link to Github hash for the CWL workflow used.", + "type": "string" + }, + "workflow_start_datetime": { + "oneOf": [ + { + "format": "date-time", + "type": "string" + }, + { + "type": "null" + } + ], + "term": { + "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" + } + }, + "workflow_type": { + "enum": [ + "Read Group Quality Control" + ], + "term": { + "description": "Generic name for the workflow used to analyze a data set.\n" + } + }, + "workflow_version": { + "description": "Major version for a GDC workflow.", + "type": "string" + } + }, + "required": [ + "submitter_id", + "workflow_link", + "type", + "percent_gc_content", + "encoding", + "total_sequences", + "basic_statistics", + "per_base_sequence_quality", + "per_tile_sequence_quality", + "per_sequence_quality_score", + "per_base_sequence_content", + "per_sequence_gc_content", + "per_base_n_content", + "sequence_length_distribution", + "sequence_duplication_levels", + "overrepresented_sequences", + "adapter_content", + "kmer_content", + "read_groups" + ], + "submittable": false, + "systemProperties": [ + "id", + "project_id", + "created_datetime", + "updated_datetime", + "state" + ], + "title": "Read Group QC", + "type": "object", + "uniqueKeys": [ + [ + "id" + ], + [ + "project_id", + "submitter_id" + ] + ], + "validators": null + }, + "root": { + "$schema": "http://json-schema.org/draft-04/schema#", + "additionalProperties": false, + "category": "internal", + "constraints": null, + "id": "root", + "program": "*", + "properties": { + "id": { + "enum": [ + "root" + ] + }, + "schema_version": { + "type": "string" + }, + "type": { + "type": "string" + } + }, + "root": "*", + "submittable": false, + "systemProperties": [ + "id" + ], + "title": "Root", + "type": "object", + "uniqueKeys": [ + [ + "id" + ] + ], + "validators": null + }, + "sample": { + "$schema": "http://json-schema.org/draft-04/schema#", + "additionalProperties": false, + "category": "biospecimen", + "description": "Any material sample taken from a biological entity for testing, diagnostic, propagation, treatment or research purposes, including a sample obtained from a living organism or taken from the biological object after halting of all its life functions. Biospecimen can contain one or more components including but not limited to cellular molecules, cells, tissues, organs, body fluids, embryos, and body excretory products.\n", + "id": "sample", + "links": [ + { + "backref": "samples", + "label": "derived_from", + "multiplicity": "many_to_one", + "name": "cases", + "required": true, + "target_type": "case" + }, + { + "backref": "samples", + "label": "related_to", + "multiplicity": "many_to_one", + "name": "diagnoses", + "required": false, + "target_type": "diagnosis" + } + ], + "namespace": "http://gdc.nci.nih.gov", + "program": "*", + "project": "*", + "properties": { + "biospecimen_anatomic_site": { + "enum": [ + "Abdomen", + "Abdominal Wall", + "Acetabulum", + "Adenoid", + "Adipose", + "Adrenal", + "Alveolar Ridge", + "Amniotic Fluid", + "Ampulla Of Vater", + "Anal Sphincter", + "Ankle", + "Anorectum", + "Antecubital Fossa", + "Antrum", + "Anus", + "Aorta", + "Aortic Body", + "Appendix", + "Aqueous Fluid", + "Arm", + "Artery", + "Ascending Colon", + "Ascending Colon Hepatic Flexure", + "Auditory Canal", + "Autonomic Nervous System", + "Axilla", + "Back", + "Bile Duct", + "Bladder", + "Blood", + "Blood Vessel", + "Bone", + "Bone Marrow", + "Bowel", + "Brain", + "Brain Stem", + "Breast", + "Broad Ligament", + "Bronchiole", + "Bronchus", + "Brow", + "Buccal Cavity", + "Buccal Mucosa", + "Buttock", + "Calf", + "Capillary", + "Cardia", + "Carina", + "Carotid Artery", + "Carotid Body", + "Cartilage", + "Cecum", + "Cell-Line", + "Central Nervous System", + "Cerebellum", + "Cerebral Cortex", + "Cerebrospinal Fluid", + "Cerebrum", + "Cervical Spine", + "Cervix", + "Chest", + "Chest Wall", + "Chin", + "Clavicle", + "Clitoris", + "Colon", + "Colon - Mucosa Only", + "Common Duct", + "Conjunctiva", + "Connective Tissue", + "Dermal", + "Descending Colon", + "Diaphragm", + "Duodenum", + "Ear", + "Ear Canal", + "Ear, Pinna (External)", + "Effusion", + "Elbow", + "Endocrine Gland", + "Epididymis", + "Epidural Space", + "Esophagogastric Junction", + "Esophagus", + "Esophagus - Mucosa Only", + "Eye", + "Fallopian Tube", + "Femoral Artery", + "Femoral Vein", + "Femur", + "Fibroblasts", + "Fibula", + "Finger", + "Floor Of Mouth", + "Fluid", + "Foot", + "Forearm", + "Forehead", + "Foreskin", + "Frontal Cortex", + "Frontal Lobe", + "Fundus Of Stomach", + "Gallbladder", + "Ganglia", + "Gastroesophageal Junction", + "Gastrointestinal Tract", + "Groin", + "Gum", + "Hand", + "Hard Palate", + "Head & Neck", + "Head - Face Or Neck, Nos", + "Heart", + "Hepatic", + "Hepatic Duct", + "Hepatic Vein", + "Hip", + "Hippocampus", + "Humerus", + "Hypopharynx", + "Ileum", + "Ilium", + "Index Finger", + "Ischium", + "Islet Cells", + "Jaw", + "Jejunum", + "Joint", + "Kidney", + "Knee", + "Lacrimal Gland", + "Large Bowel", + "Laryngopharynx", + "Larynx", + "Leg", + "Leptomeninges", + "Ligament", + "Lip", + "Liver", + "Lumbar Spine", + "Lung", + "Lymph Node", + "Lymph Node(s) Axilla", + "Lymph Node(s) Cervical", + "Lymph Node(s) Distant", + "Lymph Node(s) Epitrochlear", + "Lymph Node(s) Femoral", + "Lymph Node(s) Hilar", + "Lymph Node(s) Iliac-Common", + "Lymph Node(s) Iliac-External", + "Lymph Node(s) Inguinal", + "Lymph Node(s) Internal Mammary", + "Lymph Node(s) Mammary", + "Lymph Node(s) Mesenteric", + "Lymph Node(s) Occipital", + "Lymph Node(s) Paraaortic", + "Lymph Node(s) Parotid", + "Lymph Node(s) Pelvic", + "Lymph Node(s) Popliteal", + "Lymph Node(s) Regional", + "Lymph Node(s) Retroperitoneal", + "Lymph Node(s) Scalene", + "Lymph Node(s) Splenic", + "Lymph Node(s) Subclavicular", + "Lymph Node(s) Submandibular", + "Lymph Node(s) Supraclavicular", + "Lymph Nodes(s) Mediastinal", + "Mandible", + "Maxilla", + "Mediastinal Soft Tissue", + "Mediastinum", + "Mesentery", + "Mesothelium", + "Middle Finger", + "Mitochondria", + "Muscle", + "Nails", + "Nasal Cavity", + "Nasal Soft Tissue", + "Nasopharynx", + "Neck", + "Nerve", + "Nerve(s) Cranial", + "Occipital Cortex", + "Ocular Orbits", + "Omentum", + "Oral Cavity", + "Oral Cavity - Mucosa Only", + "Oropharynx", + "Other", + "Ovary", + "Palate", + "Pancreas", + "Paraspinal Ganglion", + "Parathyroid", + "Parotid Gland", + "Patella", + "Pelvis", + "Penis", + "Pericardium", + "Periorbital Soft Tissue", + "Peritoneal Cavity", + "Peritoneum", + "Pharynx", + "Pineal", + "Pineal Gland", + "Pituitary Gland", + "Placenta", + "Pleura", + "Popliteal Fossa", + "Prostate", + "Pylorus", + "Rectosigmoid Junction", + "Rectum", + "Retina", + "Retro-Orbital Region", + "Retroperitoneum", + "Rib", + "Ring Finger", + "Round Ligament", + "Sacrum", + "Salivary Gland", + "Scalp", + "Scapula", + "Sciatic Nerve", + "Scrotum", + "Seminal Vesicle", + "Shoulder", + "Sigmoid Colon", + "Sinus", + "Sinus(es), Maxillary", + "Skeletal Muscle", + "Skin", + "Skull", + "Small Bowel", + "Small Bowel - Mucosa Only", + "Small Finger", + "Soft Tissue", + "Spinal Column", + "Spinal Cord", + "Spleen", + "Splenic Flexure", + "Sternum", + "Stomach", + "Stomach - Mucosa Only", + "Subcutaneous Tissue", + "Synovium", + "Temporal Cortex", + "Tendon", + "Testis", + "Thigh", + "Thoracic Spine", + "Thorax", + "Throat", + "Thumb", + "Thymus", + "Thyroid", + "Tibia", + "Tongue", + "Tonsil", + "Tonsil (Pharyngeal)", + "Trachea / Major Bronchi", + "Transverse Colon", + "Trunk", + "Umbilical Cord", + "Ureter", + "Urethra", + "Urinary Tract", + "Uterus", + "Uvula", + "Vagina", + "Vas Deferens", + "Vein", + "Venous", + "Vertebra", + "Vulva", + "White Blood Cells", + "Wrist", + "Unknown", + "Not Reported", + "Not Allowed To Collect" + ], + "term": { + "description": "Text term that represents the name of the primary disease site of the submitted tumor sample.\n", + "termDef": { + "cde_id": 4742851, + "cde_version": 1, + "source": "caDSR", + "term": "Submitted Tumor Sample Primary Anatomic Site", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=4742851&version=1.0" + } + } + }, + "cases": { + "anyOf": [ + { + "items": { + "additionalProperties": true, + "maxItems": 1, + "minItems": 1, + "properties": { + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "submitter_id": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + { + "additionalProperties": true, + "properties": { + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "submitter_id": { + "type": "string" + } + }, + "type": "object" + } + ] + }, + "composition": { + "enum": [ + "Buccal Cells", + "Buffy Coat", + "Bone Marrow Components", + "Bone Marrow Components NOS", + "Control Analyte", + "Cell", + "Circulating Tumor Cell (CTC)", + "Derived Cell Line", + "EBV Immortalized", + "Fibroblasts from Bone Marrow Normal", + "Granulocytes", + "Human Original Cells", + "Lymphocytes", + "Mononuclear Cells from Bone Marrow Normal", + "Peripheral Blood Components NOS", + "Peripheral Blood Nucleated Cells", + "Pleural Effusion", + "Plasma", + "Peripheral Whole Blood", + "Serum", + "Saliva", + "Sputum", + "Solid Tissue", + "Whole Bone Marrow", + "Unknown", + "Not Reported", + "Not Allowed To Collect" + ], + "term": { + "description": "Text term that represents the cellular composition of the sample.\n", + "termDef": { + "cde_id": 5432591, + "cde_version": 1, + "source": "caDSR", + "term": "Biospecimen Cellular Composition Type", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=5432591&version=1.0" + } + } + }, + "created_datetime": { + "oneOf": [ + { + "format": "date-time", + "type": "string" + }, + { + "type": "null" + } + ], + "term": { + "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" + } + }, + "current_weight": { + "term": { + "description": "Numeric value that represents the current weight of the sample, measured in milligrams.\n", + "termDef": { + "cde_id": 5432606, + "cde_version": 1, + "source": "caDSR", + "term": "Tissue Sample Current Weight Milligram Value", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=5432606&version=1.0" + } + }, + "type": "number" + }, + "days_to_collection": { + "term": { + "description": "Time interval from the date of biospecimen collection to the date of initial pathologic diagnosis, represented as a calculated number of days.\n", + "termDef": { + "cde_id": 3008340, + "cde_version": 1, + "source": "caDSR", + "term": "Biospecimen Collection Date Less Initial Pathologic Diagnosis Date Calculated Day Value", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3008340&version=1.0" + } + }, + "type": "integer" + }, + "days_to_sample_procurement": { + "term": { + "description": "The number of days from the date the patient was diagnosed to the date of the procedure that produced the sample.\n" + }, + "type": "integer" + }, + "diagnoses": { + "anyOf": [ + { + "items": { + "additionalProperties": true, + "maxItems": 1, + "minItems": 1, + "properties": { + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "submitter_id": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + { + "additionalProperties": true, + "properties": { + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "submitter_id": { + "type": "string" + } + }, + "type": "object" + } + ] + }, + "diagnosis_pathologically_confirmed": { + "enum": [ + "Yes", + "No", + "Unknown" + ], + "term": { + "ref": "_terms.yaml#/diagnosis_pathologically_confirmed" + } + }, + "freezing_method": { + "term": { + "description": "Text term that represents the method used for freezing the sample.\n", + "termDef": { + "cde_id": 5432607, + "cde_version": 1, + "source": "caDSR", + "term": "Tissue Sample Freezing Method Type", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=5432607&version=1.0" + } + }, + "type": "string" + }, + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "systemAlias": "node_id", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "initial_weight": { + "term": { + "description": "Numeric value that represents the initial weight of the sample, measured in milligrams.\n", + "termDef": { + "cde_id": 5432605, + "cde_version": 1, + "source": "caDSR", + "term": "Tissue Sample Initial Weight Milligram Value", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=5432605&version=1.0" + } + }, + "type": "number" + }, + "intermediate_dimension": { + "terms": { + "description": "Intermediate dimension of the sample, in millimeters.\n" + }, + "type": "string" + }, + "is_ffpe": { + "term": { + "description": "Indicator to signify whether or not the tissue sample was fixed in formalin and embedded in paraffin (FFPE).\n", + "termDef": { + "cde_id": 4170557, + "cde_version": 1, + "source": "caDSR", + "term": "Specimen Processing Formalin Fixed Paraffin Embedded Tissue Indicator", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=4170557&version=1.0" + } + }, + "type": "boolean" + }, + "longest_dimension": { + "terms": { + "description": "Numeric value that represents the longest dimension of the sample, measured in millimeters.\n", + "termDef": { + "cde_id": 5432602, + "cde_version": 1, + "source": "caDSR", + "term": "Tissue Sample Longest Dimension Millimeter Measurement", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=5432602&version=1.0" + } + }, + "type": "string" + }, + "method_of_sample_procurement": { + "enum": [ + "Abdomino-perineal Resection of Rectum", + "Anterior Resection of Rectum", + "Aspirate", + "Biopsy", + "Blood Draw", + "Bone Marrow Aspirate", + "Core Biopsy", + "Cystectomy", + "Endo Rectal Tumor Resection", + "Endoscopic Biopsy", + "Endoscopic Mucosal Resection (EMR)", + "Enucleation", + "Excisional Biopsy", + "Fine Needle Aspiration", + "Full Hysterectomy", + "Gross Total Resection", + "Hand Assisted Laparoscopic Radical Nephrectomy", + "Hysterectomy NOS", + "Incisional Biopsy", + "Indeterminant", + "Laparoscopic Biopsy", + "Laparoscopic Partial Nephrectomy", + "Laparoscopic Radical Nephrectomy", + "Laparoscopic Radical Prostatectomy with Robotics", + "Laparoscopic Radical Prostatectomy without Robotics", + "Left Hemicolectomy", + "Lobectomy", + "Local Resection (Exoresection; wall resection)", + "Lumpectomy", + "Modified Radical Mastectomy", + "Needle Biopsy", + "Open Craniotomy", + "Open Partial Nephrectomy", + "Open Radical Nephrectomy", + "Open Radical Prostatectomy", + "Orchiectomy", + "Other", + "Other Surgical Resection", + "Pan-Procto Colectomy", + "Pneumonectomy", + "Right Hemicolectomy", + "Sigmoid Colectomy", + "Simple Mastectomy", + "Subtotal Resection", + "Surgical Resection", + "Thoracoscopic Biopsy", + "Total Colectomy", + "Total Mastectomy", + "Transplant", + "Transurethral resection (TURBT)", + "Transverse Colectomy", + "Tumor Resection", + "Wedge Resection", + "Unknown", + "Not Reported", + "Not Allowed To Collect" + ], + "term": { + "description": "The method used to procure the sample used to extract analyte(s).\n", + "termDef": { + "cde_id": null, + "cde_version": null, + "source": null, + "term": "Method of Sample Procurement", + "term_url": null + } + } + }, + "oct_embedded": { + "term": { + "description": "Indicator of whether or not the sample was embedded in Optimal Cutting Temperature (OCT) compound.\n", + "termDef": { + "cde_id": 5432538, + "cde_version": 1, + "source": "caDSR", + "term": "Tissue Sample Optimal Cutting Temperature Compound Embedding Indicator", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=5432538&version=1.0" + } + }, + "type": "string" + }, + "preservation_method": { + "enum": [ + "Cryopreserved", + "FFPE", + "Fresh", + "OCT", + "Snap Frozen", + "Frozen", + "Unknown", + "Not Reported", + "Not Allowed To Collect" + ], + "term": { + "description": "Text term that represents the method used to preserve the sample.\n", + "termDef": { + "cde_id": 5432521, + "cde_version": 1, + "source": "caDSR", + "term": "Tissue Sample Preservation Method Type", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=5432521&version=1.0" + } + } + }, + "project_id": { + "type": "string" + }, + "sample_type": { + "description": "Characterization of the sample as either clinical or contrived.", + "enum": [ + "Additional Metastatic", + "Additional - New Primary", + "Blood Derived Cancer - Bone Marrow, Post-treatment", + "Blood Derived Cancer - Peripheral Blood, Post-treatment", + "Blood Derived Normal", + "Bone Marrow Normal", + "Buccal Cell Normal", + "Cell Line Derived Xenograft Tissue", + "Cell Lines", + "cfDNA", + "Circulating Tumor Cell (CTC)", + "Control Analyte", + "Clinical", + "Contrived", + "ctDNA", + "DNA", + "EBV Immortalized Normal", + "FFPE Recurrent", + "FFPE Scrolls", + "Fibroblasts from Bone Marrow Normal", + "GenomePlex (Rubicon) Amplified DNA", + "Granulocytes", + "Human Tumor Original Cells", + "Metastatic", + "Mononuclear Cells from Bone Marrow Normal", + "Primary Blood Derived Cancer - Peripheral Blood", + "Recurrent Blood Derived Cancer - Peripheral Blood", + "Pleural Effusion", + "Primary Blood Derived Cancer - Bone Marrow", + "Primary Tumor", + "Primary Xenograft Tissue", + "Post neo-adjuvant therapy", + "Recurrent Blood Derived Cancer - Bone Marrow", + "Recurrent Tumor", + "Repli-G (Qiagen) DNA", + "Repli-G X (Qiagen) DNA", + "RNA", + "Slides", + "Solid Tissue Normal", + "Total RNA", + "Xenograft Tissue", + "Unknown", + "Not Reported", + "Not Allowed To Collect" + ] + }, + "sample_type_id": { + "enum": [ + "01", + "02", + "03", + "04", + "05", + "06", + "07", + "08", + "09", + "10", + "11", + "12", + "13", + "14", + "15", + "16", + "20", + "40", + "41", + "42", + "50", + "60", + "61", + "99" + ], + "term": { + "description": "The accompanying sample type id for the sample type.\n" + } + }, + "sample_volume": { + "description": "The volume of the sample in mL.", + "type": "number" + }, + "shortest_dimension": { + "term": { + "description": "Numeric value that represents the shortest dimension of the sample, measured in millimeters.\n", + "termDef": { + "cde_id": 5432603, + "cde_version": 1, + "source": "caDSR", + "term": "Tissue Sample Short Dimension Millimeter Measurement", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=5432603&version=1.0" + } + }, + "type": "string" + }, + "state": { + "default": "validated", + "downloadable": [ + "uploaded", + "md5summed", + "validating", + "validated", + "error", + "invalid", + "released" + ], + "oneOf": [ + { + "enum": [ + "uploading", + "uploaded", + "md5summing", + "md5summed", + "validating", + "error", + "invalid", + "suppressed", + "redacted", + "live" + ] + }, + { + "enum": [ + "validated", + "submitted", + "released" + ] + } + ], + "public": [ + "live" + ], + "term": { + "description": "The current state of the object.\n" + } + }, + "submitter_id": { + "description": "The legacy barcode used before prior to the use UUIDs, varies by project. For TCGA this is bcrsamplebarcode.\n", + "type": [ + "string", + "null" + ] + }, + "time_between_clamping_and_freezing": { + "term": { + "description": "Numeric representation of the elapsed time between the surgical clamping of blood supply and freezing of the sample, measured in minutes.\n", + "termDef": { + "cde_id": 5432611, + "cde_version": 1, + "source": "caDSR", + "term": "Tissue Sample Clamping and Freezing Elapsed Minute Time", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=5432611&version=1.0" + } + }, + "type": "string" + }, + "time_between_excision_and_freezing": { + "term": { + "description": "Numeric representation of the elapsed time between the excision and freezing of the sample, measured in minutes.\n", + "termDef": { + "cde_id": 5432612, + "cde_version": 1, + "source": "caDSR", + "term": "Tissue Sample Excision and Freezing Elapsed Minute Time", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=5432612&version=1.0" + } + }, + "type": "string" + }, + "tissue_type": { + "enum": [ + "Tumor", + "Normal", + "Abnormal", + "Peritumoral", + "Contrived", + "Unknown", + "Not Reported", + "Not Allowed To Collect" + ], + "term": { + "description": "Text term that represents a description of the kind of tissue collected with respect to disease status or proximity to tumor tissue.\n", + "termDef": { + "cde_id": 5432687, + "cde_version": 1, + "source": "caDSR", + "term": "Tissue Sample Description Type", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=5432687&version=1.0" + } + } + }, + "tumor_code": { + "enum": [ + "Non cancerous tissue", + "Diffuse Large B-Cell Lymphoma (DLBCL)", + "Lung Cancer (all types)", + "Lung Adenocarcinoma", + "Non-small Cell Lung Carcinoma (NSCLC)", + "Colon Cancer (all types)", + "Breast Cancer (all types)", + "Cervical Cancer (all types)", + "Anal Cancer (all types)", + "Acute lymphoblastic leukemia (ALL)", + "Acute myeloid leukemia (AML)", + "Induction Failure AML (AML-IF)", + "Neuroblastoma (NBL)", + "Osteosarcoma (OS)", + "Ewing sarcoma", + "Wilms tumor (WT)", + "Clear cell sarcoma of the kidney (CCSK)", + "Rhabdoid tumor (kidney) (RT)", + "CNS, ependymoma", + "CNS, glioblastoma (GBM)", + "CNS, rhabdoid tumor", + "CNS, low grade glioma (LGG)", + "CNS, medulloblastoma", + "CNS, other", + "NHL, anaplastic large cell lymphoma", + "NHL, Burkitt lymphoma (BL)", + "Rhabdomyosarcoma", + "Soft tissue sarcoma, non-rhabdomyosarcoma", + "Castration-Resistant Prostate Cancer (CRPC)", + "Prostate Cancer", + "Hepatocellular Carcinoma (HCC)" + ], + "term": { + "description": "Diagnostic tumor code of the tissue sample source.\n" + } + }, + "tumor_code_id": { + "enum": [ + "00", + "01", + "02", + "03", + "04", + "10", + "20", + "21", + "30", + "40", + "41", + "50", + "51", + "52", + "60", + "61", + "62", + "63", + "64", + "65", + "70", + "71", + "80", + "81" + ], + "term": { + "description": "BCR-defined id code for the tumor sample.\n" + } + }, + "tumor_descriptor": { + "description": "A description of the tumor from which the sample was derived.", + "enum": [ + "Metastatic", + "Not Applicable", + "Primary", + "Recurrence", + "Xenograft", + "NOS", + "Unknown", + "Not Reported", + "Not Allowed To Collect" + ], + "term": { + "description": "Text that describes the kind of disease present in the tumor specimen as related to a specific timepoint.\n", + "termDef": { + "cde_id": 3288124, + "cde_version": 1, + "source": "caDSR", + "term": "Tumor Tissue Disease Description Type", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=3288124&version=1.0" + } + } + }, + "type": { + "type": "string" + }, + "updated_datetime": { + "oneOf": [ + { + "format": "date-time", + "type": "string" + }, + { + "type": "null" + } + ], + "term": { + "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" + } + } + }, + "required": [ + "submitter_id", + "cases" + ], + "submittable": true, + "systemProperties": [ + "id", + "project_id", + "state", + "created_datetime", + "updated_datetime" + ], + "title": "Sample", + "type": "object", + "uniqueKeys": [ + [ + "id" + ], + [ + "project_id", + "submitter_id" + ] + ], + "validators": null + }, + "slide": { + "$schema": "http://json-schema.org/draft-04/schema#", + "additionalProperties": false, + "category": "biospecimen", + "description": "A digital image, microscopic or otherwise, of any sample, portion, or sub-part thereof. (GDC)\n", + "id": "slide", + "links": [ + { + "backref": "slides", + "label": "derived_from", + "multiplicity": "many_to_many", + "name": "samples", + "required": true, + "target_type": "sample" + } + ], + "namespace": "http://gdc.nci.nih.gov", + "program": "*", + "project": "*", + "properties": { + "apoptotic_concentration": { + "description": "The concentration, in cells/mL, of apoptotic cells in the slide blood.", + "type": "number" + }, + "created_datetime": { + "oneOf": [ + { + "format": "date-time", + "type": "string" + }, + { + "type": "null" + } + ], + "term": { + "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" + } + }, + "ctc_concentration": { + "description": "The concentration, in cells/mL, of traditional CTC cells (intact and enlarged cell and nucleus, cytokeratin positive, and CD45 negative) in the slide blood.", + "type": "number" + }, + "ctc_low_concentration": { + "description": "The concentration, in cells/mL, of CTC-low cells (those with low cytokeratin levels compared to traditional CTCs) in the slide blood.", + "type": "number" + }, + "ctc_small_concentration": { + "description": "The concentration, in cells/mL, of CTC-small cells (those with a small nuclear and cellular size relative to traditional CTCs) in the slide blood.", + "type": "number" + }, + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "systemAlias": "node_id", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "methanol_added": { + "description": "True/False indicator for if methanol was used in the slide preparation process.", + "type": "boolean" + }, + "number_nucleated_cells": { + "description": "The total number of nucleated cells identified on the slide.", + "type": "integer" + }, + "number_proliferating_cells": { + "term": { + "description": "Numeric value that represents the count of proliferating cells determined during pathologic review of the sample slide(s).\n", + "termDef": { + "cde_id": 5432636, + "cde_version": 1, + "source": "caDSR", + "term": "Pathology Review Slide Proliferating Cell Count", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=5432636&version=1.0" + } + }, + "type": "integer" + }, + "percent_eosinophil_infiltration": { + "term": { + "description": "Numeric value to represent the percentage of infiltration by eosinophils in a tumor sample or specimen.\n", + "termDef": { + "cde_id": 2897700, + "cde_version": 2, + "source": "caDSR", + "term": "Specimen Eosinophilia Percentage Value", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2897700&version=2.0" + } + }, + "type": "number" + }, + "percent_granulocyte_infiltration": { + "term": { + "description": "Numeric value to represent the percentage of infiltration by granulocytes in a tumor sample or specimen.\n", + "termDef": { + "cde_id": 2897705, + "cde_version": 2, + "source": "caDSR", + "term": "Specimen Granulocyte Infiltration Percentage Value", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2897705&version=2.0" + } + }, + "type": "number" + }, + "percent_inflam_infiltration": { + "term": { + "description": "Numeric value to represent local response to cellular injury, marked by capillary dilatation, edema and leukocyte infiltration; clinically, inflammation is manifest by reddness, heat, pain, swelling and loss of function, with the need to heal damaged tissue.\n", + "termDef": { + "cde_id": 2897695, + "cde_version": 1, + "source": "caDSR", + "term": "Specimen Inflammation Change Percentage Value", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2897695&version=1.0" + } + }, + "type": "number" + }, + "percent_lymphocyte_infiltration": { + "term": { + "description": "Numeric value to represent the percentage of infiltration by lymphocytes in a solid tissue normal sample or specimen.\n", + "termDef": { + "cde_id": 2897710, + "cde_version": 2, + "source": "caDSR", + "term": "Specimen Lymphocyte Infiltration Percentage Value", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2897710&version=2.0" + } + }, + "type": "number" + }, + "percent_monocyte_infiltration": { + "term": { + "description": "Numeric value to represent the percentage of monocyte infiltration in a sample or specimen.\n", + "termDef": { + "cde_id": 5455535, + "cde_version": 1, + "source": "caDSR", + "term": "Specimen Monocyte Infiltration Percentage Value", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=5455535&version=1.0" + } + }, + "type": "number" + }, + "percent_necrosis": { + "term": { + "description": "Numeric value to represent the percentage of cell death in a malignant tumor sample or specimen.\n", + "termDef": { + "cde_id": 2841237, + "cde_version": 1, + "source": "caDSR", + "term": "Malignant Neoplasm Necrosis Percentage Value", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2841237&version=1.0" + } + }, + "type": "number" + }, + "percent_neutrophil_infiltration": { + "term": { + "description": "Numeric value to represent the percentage of infiltration by neutrophils in a tumor sample or specimen.\n", + "termDef": { + "cde_id": 2841267, + "cde_version": 1, + "source": "caDSR", + "term": "Malignant Neoplasm Neutrophil Infiltration Percentage Cell Value", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2841267&version=1.0" + } + }, + "type": "number" + }, + "percent_normal_cells": { + "term": { + "description": "Numeric value to represent the percentage of normal cell content in a malignant tumor sample or specimen.\n", + "termDef": { + "cde_id": 2841233, + "cde_version": 1, + "source": "caDSR", + "term": "Malignant Neoplasm Normal Cell Percentage Value", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2841233&version=1.0" + } + }, + "type": "number" + }, + "percent_stromal_cells": { + "term": { + "description": "Numeric value to represent the percentage of reactive cells that are present in a malignant tumor sample or specimen but are not malignant such as fibroblasts, vascular structures, etc.\n", + "termDef": { + "cde_id": 2841241, + "cde_version": 1, + "source": "caDSR", + "term": "Malignant Neoplasm Stromal Cell Percentage Value", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2841241&version=1.0" + } + }, + "type": "number" + }, + "percent_tumor_cells": { + "term": { + "description": "Numeric value that represents the percentage of infiltration by granulocytes in a sample.\n", + "termDef": { + "cde_id": 5432686, + "cde_version": 1, + "source": "caDSR", + "term": "Specimen Tumor Cell Percentage Value", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=5432686&version=1.0" + } + }, + "type": "number" + }, + "percent_tumor_nuclei": { + "term": { + "description": "Numeric value to represent the percentage of tumor nuclei in a malignant neoplasm sample or specimen.\n", + "termDef": { + "cde_id": 2841225, + "cde_version": 1, + "source": "caDSR", + "term": "Malignant Neoplasm Neoplasm Nucleus Percentage Cell Value", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2841225&version=1.0" + } + }, + "type": "number" + }, + "project_id": { + "term": { + "description": "Unique ID for any specific defined piece of work that is undertaken or attempted to meet a single requirement.\n" + }, + "type": "string" + }, + "run_datetime": { + "oneOf": [ + { + "format": "date-time", + "type": "string" + }, + { + "type": "null" + } + ], + "term": { + "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" + } + }, + "run_name": { + "description": "Name, number, or other identifier given to this slide's run.", + "type": "string" + }, + "samples": { + "anyOf": [ + { + "items": { + "additionalProperties": true, + "minItems": 1, + "properties": { + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "submitter_id": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + { + "additionalProperties": true, + "properties": { + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "submitter_id": { + "type": "string" + } + }, + "type": "object" + } + ] + }, + "section_location": { + "term": { + "description": "Tissue source of the slide.\n" + }, + "type": "string" + }, + "slide_identifier": { + "description": "Unique identifier given to the this slide.", + "type": "string" + }, + "state": { + "default": "validated", + "downloadable": [ + "uploaded", + "md5summed", + "validating", + "validated", + "error", + "invalid", + "released" + ], + "oneOf": [ + { + "enum": [ + "uploading", + "uploaded", + "md5summing", + "md5summed", + "validating", + "error", + "invalid", + "suppressed", + "redacted", + "live" + ] + }, + { + "enum": [ + "validated", + "submitted", + "released" + ] + } + ], + "public": [ + "live" + ], + "term": { + "description": "The current state of the object.\n" + } + }, + "submitter_id": { + "type": [ + "string", + "null" + ] + }, + "type": { + "type": "string" + }, + "updated_datetime": { + "oneOf": [ + { + "format": "date-time", + "type": "string" + }, + { + "type": "null" + } + ], + "term": { + "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" + } + } + }, + "required": [ + "submitter_id", + "samples" + ], + "submittable": true, + "systemProperties": [ + "id", + "project_id", + "state", + "created_datetime", + "updated_datetime" + ], + "title": "Slide", + "type": "object", + "uniqueKeys": [ + [ + "id" + ], + [ + "project_id", + "submitter_id" + ] + ], + "validators": null + }, + "slide_count": { + "$schema": "http://json-schema.org/draft-04/schema#", + "additionalProperties": false, + "category": "notation", + "description": "Information pertaining to processed results obtained from slides; often in the form of counts.\n", + "id": "slide_count", + "links": [ + { + "backref": "slide_counts", + "label": "data_from", + "multiplicity": "many_to_many", + "name": "slides", + "required": true, + "target_type": "slide" + } + ], + "namespace": "http://gdc.nci.nih.gov", + "program": "*", + "project": "*", + "properties": { + "biomarker_signal": { + "description": "Numeric quantification of the biomarker signal.", + "type": "number" + }, + "cell_count": { + "description": "Raw count of a particular cell type.", + "type": "integer" + }, + "cell_identifier": { + "description": "An alternative identifier for a given cell type.", + "type": "string" + }, + "cell_type": { + "description": "The type of cell being counted or measured.", + "type": "string" + }, + "ck_signal": { + "description": "Numeric quantification of the CK signal.", + "type": "number" + }, + "created_datetime": { + "oneOf": [ + { + "format": "date-time", + "type": "string" + }, + { + "type": "null" + } + ], + "term": { + "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" + } + }, + "er_localization": { + "description": "Cellular localization of the endoplasmic reticulum as determined by staining.", + "enum": [ + "Nuclear", + "Cytoplasmic", + "Both", + "None", + "Not Determined" + ] + }, + "frame_identifier": { + "description": "Name, number, or other identifier given to the frame of the slide from which this image was taken.", + "type": "string" + }, + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "systemAlias": "node_id", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "project_id": { + "type": "string" + }, + "relative_cytokeratin_intensity": { + "description": "The ratio of the single cell's cytokeratin staining intensity to the average of the surrounding cells.", + "type": "number" + }, + "relative_er_intensity": { + "description": "The ratio of the single cell's endoplasmic reticulum staining intensity to the average of the surrounding cells.", + "type": "number" + }, + "relative_nuclear_intensity": { + "description": "The ratio of the single cell's nuclear staining intensity to the average of the surrounding cells.", + "type": "number" + }, + "relative_nuclear_size": { + "description": "The ratio of the single cell's nucleus size to the average of the surrounding cells.", + "type": "number" + }, + "run_name": { + "description": "The name or identifier given to the run that was used to generate this slide count.", + "type": "string" + }, + "slides": { + "anyOf": [ + { + "items": { + "additionalProperties": true, + "minItems": 1, + "properties": { + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "submitter_id": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + { + "additionalProperties": true, + "properties": { + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "submitter_id": { + "type": "string" + } + }, + "type": "object" + } + ] + }, + "state": { + "default": "validated", + "downloadable": [ + "uploaded", + "md5summed", + "validating", + "validated", + "error", + "invalid", + "released" + ], + "oneOf": [ + { + "enum": [ + "uploading", + "uploaded", + "md5summing", + "md5summed", + "validating", + "error", + "invalid", + "suppressed", + "redacted", + "live" + ] + }, + { + "enum": [ + "validated", + "submitted", + "released" + ] + } + ], + "public": [ + "live" + ], + "term": { + "description": "The current state of the object.\n" + } + }, + "submitter_id": { + "type": [ + "string", + "null" + ] + }, + "type": { + "enum": [ + "slide_count" + ] + }, + "updated_datetime": { + "oneOf": [ + { + "format": "date-time", + "type": "string" + }, + { + "type": "null" + } + ], + "term": { + "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" + } + } + }, + "required": [ + "submitter_id", + "slides" + ], + "submittable": true, + "systemProperties": [ + "id", + "project_id", + "created_datetime", + "updated_datetime", + "state" + ], + "title": "Slide Count", + "type": "object", + "uniqueKeys": [ + [ + "id" + ], + [ + "project_id", + "submitter_id" + ] + ], + "validators": null + }, + "slide_image": { + "$schema": "http://json-schema.org/draft-04/schema#", + "additionalProperties": false, + "category": "data_file", + "description": "Data file containing image of a slide.\n", + "id": "slide_image", + "links": [ + { + "backref": "slide_images", + "label": "data_from", + "multiplicity": "many_to_one", + "name": "slides", + "required": true, + "target_type": "slide" + }, + { + "backref": "slide_images", + "label": "data_from", + "multiplicity": "many_to_many", + "name": "core_metadata_collections", + "required": false, + "target_type": "core_metadata_collection" + } + ], + "namespace": "http://gdc.nci.nih.gov", + "program": "*", + "project": "*", + "properties": { + "cell_count": { + "description": "Count of the cell type being imaged or otherwise analysed.", + "type": "integer" + }, + "cell_identifier": { + "description": "An alternative identifier for a given cell type.", + "type": "string" + }, + "cell_type": { + "description": "The type of cell being imaged or otherwised analysed.", + "type": "string" + }, + "core_metadata_collections": { + "anyOf": [ + { + "items": { + "additionalProperties": true, + "minItems": 1, + "properties": { + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "submitter_id": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + { + "additionalProperties": true, + "properties": { + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "submitter_id": { + "type": "string" + } + }, + "type": "object" + } + ] + }, + "created_datetime": { + "oneOf": [ + { + "format": "date-time", + "type": "string" + }, + { + "type": "null" + } + ], + "term": { + "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" + } + }, + "data_category": { + "enum": [ + "Biospecimen", + "Slide Image", + "Mass Cytometry" + ], + "term": { + "description": "Broad categorization of the contents of the data file.\n" + } + }, + "data_format": { + "term": { + "description": "Format of the data files.\n" + }, + "type": "string" + }, + "data_type": { + "enum": [ + "image", + "Single Cell Image", + "Raw IMC Data", + "Single Channel IMC Image", + "Antibody Panel Added" + ], + "term": { + "description": "Specific content type of the data file.\n" + } + }, + "error_type": { + "enum": [ + "file_size", + "file_format", + "md5sum" + ], + "term": { + "description": "Type of error for the data file object.\n" + } + }, + "experimental_strategy": { + "description": "Classification of the slide type with respect to its experimental use.", + "enum": [ + "Diagnostic Slide", + "Tissue Slide" + ] + }, + "file_name": { + "term": { + "description": "The name (or part of a name) of a file (of any type).\n" + }, + "type": "string" + }, + "file_size": { + "term": { + "description": "The size of the data file (object) in bytes.\n" + }, + "type": "integer" + }, + "file_state": { + "default": "registered", + "enum": [ + "registered", + "uploading", + "uploaded", + "validating", + "validated", + "submitted", + "processing", + "processed", + "released", + "error" + ], + "term": { + "description": "The current state of the data file object.\n" + } + }, + "frame_identifier": { + "description": "Name, number, or other identifier given to the frame of the slide from which this image was taken.", + "type": "string" + }, + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "systemAlias": "node_id", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "md5sum": { + "pattern": "^[a-f0-9]{32}$", + "term": { + "description": "The 128-bit hash value expressed as a 32 digit hexadecimal number used as a file's digital fingerprint.\n" + }, + "type": "string" + }, + "object_id": { + "description": "The GUID of the object in the index service.", + "type": "string" + }, + "panel_used": { + "description": "Name or other identifier given to the panel used during an IMC run.", + "type": "string" + }, + "project_id": { + "term": { + "description": "Unique ID for any specific defined piece of work that is undertaken or attempted to meet a single requirement.\n" + }, + "type": "string" + }, + "protocol_used": { + "description": "Name or other identifier given to the protocol used during an IMC run.", + "type": "string" + }, + "run_name": { + "description": "Name, number, or other identifier given to the run that generated this slide image.", + "type": "string" + }, + "slides": { + "anyOf": [ + { + "items": { + "additionalProperties": true, + "maxItems": 1, + "minItems": 1, + "properties": { + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "submitter_id": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + { + "additionalProperties": true, + "properties": { + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "submitter_id": { + "type": "string" + } + }, + "type": "object" + } + ] + }, + "state": { + "default": "validated", + "downloadable": [ + "uploaded", + "md5summed", + "validating", + "validated", + "error", + "invalid", + "released" + ], + "oneOf": [ + { + "enum": [ + "uploading", + "uploaded", + "md5summing", + "md5summed", + "validating", + "error", + "invalid", + "suppressed", + "redacted", + "live" + ] + }, + { + "enum": [ + "validated", + "submitted", + "released" + ] + } + ], + "public": [ + "live" + ], + "term": { + "description": "The current state of the object.\n" + } + }, + "state_comment": { + "description": "Optional comment about why the file is in the current state, mainly for invalid state.\n", + "type": "string" + }, + "submitter_id": { + "description": "The file ID assigned by the submitter.", + "type": [ + "string", + "null" + ] + }, + "type": { + "enum": [ + "slide_image" + ] + }, + "updated_datetime": { + "oneOf": [ + { + "format": "date-time", + "type": "string" + }, + { + "type": "null" + } + ], + "term": { + "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" + } + } + }, + "required": [ + "submitter_id", + "file_name", + "file_size", + "md5sum", + "data_category", + "data_type", + "data_format", + "slides" + ], + "submittable": true, + "systemProperties": [ + "id", + "project_id", + "created_datetime", + "updated_datetime", + "state", + "file_state", + "error_type" + ], + "title": "Slide Image", + "type": "object", + "uniqueKeys": [ + [ + "id" + ], + [ + "project_id", + "submitter_id" + ] + ], + "validators": null + }, + "submitted_aligned_reads": { + "$schema": "http://json-schema.org/draft-04/schema#", + "additionalProperties": false, + "category": "data_file", + "description": "Data file containing aligned reads that are used as input to GDC workflows.\n", + "id": "submitted_aligned_reads", + "links": [ + { + "backref": "submitted_aligned_reads_files", + "label": "data_from", + "multiplicity": "one_to_many", + "name": "read_groups", + "required": true, + "target_type": "read_group" + }, + { + "backref": "submitted_aligned_reads_files", + "label": "data_from", + "multiplicity": "many_to_many", + "name": "core_metadata_collections", + "required": false, + "target_type": "core_metadata_collection" + } + ], + "namespace": "http://gdc.nci.nih.gov", + "program": "*", + "project": "*", + "properties": { + "core_metadata_collections": { + "anyOf": [ + { + "items": { + "additionalProperties": true, + "minItems": 1, + "properties": { + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "submitter_id": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + { + "additionalProperties": true, + "properties": { + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "submitter_id": { + "type": "string" + } + }, + "type": "object" + } + ] + }, + "created_datetime": { + "oneOf": [ + { + "format": "date-time", + "type": "string" + }, + { + "type": "null" + } + ], + "term": { + "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" + } + }, + "data_category": { + "enum": [ + "Sequencing Data", + "Sequencing Reads", + "Raw Sequencing Data" + ], + "term": { + "description": "Broad categorization of the contents of the data file.\n" + } + }, + "data_format": { + "enum": [ + "BAM", + "BED" + ], + "term": { + "description": "Format of the data files.\n" + } + }, + "data_type": { + "enum": [ + "Aligned Reads", + "Alignment Coordinates" + ], + "term": { + "description": "Specific content type of the data file.\n" + } + }, + "error_type": { + "enum": [ + "file_size", + "file_format", + "md5sum" + ], + "term": { + "description": "Type of error for the data file object.\n" + } + }, + "experimental_strategy": { + "enum": [ + "WGS", + "WXS", + "Low Pass WGS", + "Validation", + "RNA-Seq", + "miRNA-Seq", + "Total RNA-Seq", + "DNA Panel" + ], + "term": { + "description": "The sequencing strategy used to generate the data file.\n" + } + }, + "file_name": { + "term": { + "description": "The name (or part of a name) of a file (of any type).\n" + }, + "type": "string" + }, + "file_size": { + "term": { + "description": "The size of the data file (object) in bytes.\n" + }, + "type": "integer" + }, + "file_state": { + "default": "registered", + "enum": [ + "registered", + "uploading", + "uploaded", + "validating", + "validated", + "submitted", + "processing", + "processed", + "released", + "error" + ], + "term": { + "description": "The current state of the data file object.\n" + } + }, + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "systemAlias": "node_id", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "md5sum": { + "pattern": "^[a-f0-9]{32}$", + "term": { + "description": "The 128-bit hash value expressed as a 32 digit hexadecimal number used as a file's digital fingerprint.\n" + }, + "type": "string" + }, + "object_id": { + "description": "The GUID of the object in the index service.", + "type": "string" + }, + "project_id": { + "term": { + "description": "Unique ID for any specific defined piece of work that is undertaken or attempted to meet a single requirement.\n" + }, + "type": "string" + }, + "read_groups": { + "anyOf": [ + { + "items": { + "additionalProperties": true, + "minItems": 1, + "properties": { + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "submitter_id": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + { + "additionalProperties": true, + "properties": { + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "submitter_id": { + "type": "string" + } + }, + "type": "object" + } + ] + }, + "state": { + "default": "validated", + "downloadable": [ + "uploaded", + "md5summed", + "validating", + "validated", + "error", + "invalid", + "released" + ], + "oneOf": [ + { + "enum": [ + "uploading", + "uploaded", + "md5summing", + "md5summed", + "validating", + "error", + "invalid", + "suppressed", + "redacted", + "live" + ] + }, + { + "enum": [ + "validated", + "submitted", + "released" + ] + } + ], + "public": [ + "live" + ], + "term": { + "description": "The current state of the object.\n" + } + }, + "state_comment": { + "description": "Optional comment about why the file is in the current state, mainly for invalid state.\n", + "type": "string" + }, + "submitter_id": { + "description": "The file ID assigned by the submitter.", + "type": [ + "string", + "null" + ] + }, + "type": { + "enum": [ + "submitted_aligned_reads" + ] + }, + "updated_datetime": { + "oneOf": [ + { + "format": "date-time", + "type": "string" + }, + { + "type": "null" + } + ], + "term": { + "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" + } + } + }, + "required": [ + "submitter_id", + "file_name", + "file_size", + "data_format", + "md5sum", + "data_category", + "data_type", + "experimental_strategy", + "read_groups" + ], + "submittable": true, + "systemProperties": [ + "id", + "project_id", + "created_datetime", + "updated_datetime", + "state", + "file_state", + "error_type" + ], + "title": "Submitted Aligned Reads", + "type": "object", + "uniqueKeys": [ + [ + "id" + ], + [ + "project_id", + "submitter_id" + ] + ], + "validators": null + }, + "submitted_copy_number": { + "$schema": "http://json-schema.org/draft-04/schema#", + "additionalProperties": false, + "category": "data_file", + "description": "Data file containing normalized copy number information from an aliquot.\n", + "id": "submitted_copy_number", + "links": [ + { + "exclusive": true, + "required": true, + "subgroup": [ + { + "backref": "submitted_copy_number_files", + "label": "derived_from", + "multiplicity": "one_to_one", + "name": "aliquots", + "required": false, + "target_type": "aliquot" + }, + { + "backref": "submitted_copy_number_files", + "label": "derived_from", + "multiplicity": "many_to_many", + "name": "read_groups", + "required": false, + "target_type": "read_group" + } + ] + } + ], + "namespace": "http://gdc.nci.nih.gov", + "program": "*", + "project": "*", + "properties": { + "aliquots": { + "anyOf": [ + { + "items": { + "additionalProperties": true, + "maxItems": 1, + "minItems": 1, + "properties": { + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "submitter_id": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + { + "additionalProperties": true, + "properties": { + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "submitter_id": { + "type": "string" + } + }, + "type": "object" + } + ] + }, + "created_datetime": { + "oneOf": [ + { + "format": "date-time", + "type": "string" + }, + { + "type": "null" + } + ], + "term": { + "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" + } + }, + "data_category": { + "term": { + "description": "Broad categorization of the contents of the data file.\n" + }, + "type": "string" + }, + "data_format": { + "term": { + "description": "Format of the data files.\n" + }, + "type": "string" + }, + "data_type": { + "term": { + "description": "Specific content type of the data file.\n" + }, + "type": "string" + }, + "error_type": { + "enum": [ + "file_size", + "file_format", + "md5sum" + ], + "term": { + "description": "Type of error for the data file object.\n" + } + }, + "experimental_strategy": { + "term": { + "description": "The sequencing strategy used to generate the data file.\n" + }, + "type": "string" + }, + "file_name": { + "term": { + "description": "The name (or part of a name) of a file (of any type).\n" + }, + "type": "string" + }, + "file_size": { + "term": { + "description": "The size of the data file (object) in bytes.\n" + }, + "type": "integer" + }, + "file_state": { + "default": "registered", + "enum": [ + "registered", + "uploading", + "uploaded", + "validating", + "validated", + "submitted", + "processing", + "processed", + "released", + "error" + ], + "term": { + "description": "The current state of the data file object.\n" + } + }, + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "systemAlias": "node_id", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "md5sum": { + "pattern": "^[a-f0-9]{32}$", + "term": { + "description": "The 128-bit hash value expressed as a 32 digit hexadecimal number used as a file's digital fingerprint.\n" + }, + "type": "string" + }, + "object_id": { + "description": "The GUID of the object in the index service.", + "type": "string" + }, + "project_id": { + "term": { + "description": "Unique ID for any specific defined piece of work that is undertaken or attempted to meet a single requirement.\n" + }, + "type": "string" + }, + "read_groups": { + "anyOf": [ + { + "items": { + "additionalProperties": true, + "minItems": 1, + "properties": { + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "submitter_id": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + { + "additionalProperties": true, + "properties": { + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "submitter_id": { + "type": "string" + } + }, + "type": "object" + } + ] + }, + "state": { + "default": "validated", + "downloadable": [ + "uploaded", + "md5summed", + "validating", + "validated", + "error", + "invalid", + "released" + ], + "oneOf": [ + { + "enum": [ + "uploading", + "uploaded", + "md5summing", + "md5summed", + "validating", + "error", + "invalid", + "suppressed", + "redacted", + "live" + ] + }, + { + "enum": [ + "validated", + "submitted", + "released" + ] + } + ], + "public": [ + "live" + ], + "term": { + "description": "The current state of the object.\n" + } + }, + "state_comment": { + "description": "Optional comment about why the file is in the current state, mainly for invalid state.\n", + "type": "string" + }, + "submitter_id": { + "description": "The file ID assigned by the submitter.", + "type": [ + "string", + "null" + ] + }, + "type": { + "enum": [ + "submitted_copy_number" + ] + }, + "updated_datetime": { + "oneOf": [ + { + "format": "date-time", + "type": "string" + }, + { + "type": "null" + } + ], + "term": { + "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" + } + } + }, + "required": [ + "submitter_id", + "file_name", + "file_size", + "data_format", + "md5sum", + "data_category", + "data_type", + "experimental_strategy" + ], + "submittable": true, + "systemProperties": [ + "id", + "project_id", + "created_datetime", + "updated_datetime", + "state", + "file_state", + "error_type" + ], + "title": "Submitted Copy Number", + "type": "object", + "uniqueKeys": [ + [ + "id" + ], + [ + "project_id", + "submitter_id" + ] + ], + "validators": null + }, + "submitted_methylation": { + "$schema": "http://json-schema.org/draft-04/schema#", + "additionalProperties": false, + "category": "data_file", + "description": "DNA methylation data files contain information on raw and normalized signal intensities, detection confidence and calculated beta values for methylated and unmethylated probes. DNA methylation is an epigenetic mark which can be associated with transcriptional inactivity when located in promoter regions.", + "id": "submitted_methylation", + "links": [ + { + "backref": "submitted_methylation_files", + "label": "data_from", + "multiplicity": "many_to_one", + "name": "aliquots", + "required": true, + "target_type": "aliquot" + } + ], + "namespace": "https://www.bloodpac.org/", + "program": "*", + "project": "*", + "properties": { + "aliquots": { + "anyOf": [ + { + "items": { + "additionalProperties": true, + "maxItems": 1, + "minItems": 1, + "properties": { + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "submitter_id": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + { + "additionalProperties": true, + "properties": { + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "submitter_id": { + "type": "string" + } + }, + "type": "object" + } + ] + }, + "assay_instrument": { + "enum": [ + "Illumina" + ] + }, + "assay_instrument_model": { + "enum": [ + "Illumina Infinium HumanMethylation450", + "Illumina Infinium HumanMethylation450K" + ] + }, + "assay_method": { + "enum": [ + "Methylation Array" + ] + }, + "created_datetime": { + "oneOf": [ + { + "format": "date-time", + "type": "string" + }, + { + "type": "null" + } + ], + "term": { + "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" + } + }, + "data_category": { + "enum": [ + "Methylation Data" + ], + "term": { + "description": "Broad categorization of the contents of the data file.\n" + } + }, + "data_format": { + "enum": [ + "IDAT" + ], + "term": { + "description": "Format of the data files.\n" + } + }, + "data_type": { + "enum": [ + "Methylation Intensity Values" + ], + "term": { + "description": "Specific content type of the data file.\n" + } + }, + "error_type": { + "enum": [ + "file_size", + "file_format", + "md5sum" + ], + "term": { + "description": "Type of error for the data file object.\n" + } + }, + "file_name": { + "term": { + "description": "The name (or part of a name) of a file (of any type).\n" + }, + "type": "string" + }, + "file_size": { + "term": { + "description": "The size of the data file (object) in bytes.\n" + }, + "type": "integer" + }, + "file_state": { + "default": "registered", + "enum": [ + "registered", + "uploading", + "uploaded", + "validating", + "validated", + "submitted", + "processing", + "processed", + "released", + "error" + ], + "term": { + "description": "The current state of the data file object.\n" + } + }, + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "systemAlias": "node_id", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "md5sum": { + "pattern": "^[a-f0-9]{32}$", + "term": { + "description": "The 128-bit hash value expressed as a 32 digit hexadecimal number used as a file's digital fingerprint.\n" + }, + "type": "string" + }, + "object_id": { + "description": "The GUID of the object in the index service.", + "type": "string" + }, + "project_id": { + "term": { + "description": "Unique ID for any specific defined piece of work that is undertaken or attempted to meet a single requirement.\n" + }, + "type": "string" + }, + "state": { + "default": "validated", + "downloadable": [ + "uploaded", + "md5summed", + "validating", + "validated", + "error", + "invalid", + "released" + ], + "oneOf": [ + { + "enum": [ + "uploading", + "uploaded", + "md5summing", + "md5summed", + "validating", + "error", + "invalid", + "suppressed", + "redacted", + "live" + ] + }, + { + "enum": [ + "validated", + "submitted", + "released" + ] + } + ], + "public": [ + "live" + ], + "term": { + "description": "The current state of the object.\n" + } + }, + "state_comment": { + "description": "Optional comment about why the file is in the current state, mainly for invalid state.\n", + "type": "string" + }, + "submitter_id": { + "description": "The file ID assigned by the submitter.", + "type": [ + "string", + "null" + ] + }, + "type": { + "enum": [ + "submitted_methylation" + ] + }, + "updated_datetime": { + "oneOf": [ + { + "format": "date-time", + "type": "string" + }, + { + "type": "null" + } + ], + "term": { + "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" + } + } + }, + "required": [ + "submitter_id", + "file_name", + "file_size", + "md5sum", + "data_category", + "data_type", + "data_format", + "aliquots" + ], + "submittable": true, + "systemProperties": [ + "id", + "project_id", + "created_datetime", + "updated_datetime", + "state", + "file_state", + "error_type" + ], + "title": "Submitted Methylation", + "type": "object", + "uniqueKeys": [ + [ + "id" + ], + [ + "project_id", + "submitter_id" + ] + ], + "validators": null + }, + "submitted_somatic_mutation": { + "$schema": "http://json-schema.org/draft-04/schema#", + "additionalProperties": false, + "category": "data_file", + "description": "Data file containing somatic mutation calls from a read group.\n", + "id": "submitted_somatic_mutation", + "links": [ + { + "backref": "submitted_somatic_mutations", + "label": "derived_from", + "multiplicity": "many_to_many", + "name": "read_groups", + "required": true, + "target_type": "read_group" + } + ], + "namespace": "http://gdc.nci.nih.gov", + "program": "*", + "project": "*", + "properties": { + "created_datetime": { + "oneOf": [ + { + "format": "date-time", + "type": "string" + }, + { + "type": "null" + } + ], + "term": { + "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" + } + }, + "data_category": { + "term": { + "description": "Broad categorization of the contents of the data file.\n" + }, + "type": "string" + }, + "data_format": { + "term": { + "description": "Format of the data files.\n" + }, + "type": "string" + }, + "data_type": { + "term": { + "description": "Specific content type of the data file.\n" + }, + "type": "string" + }, + "error_type": { + "enum": [ + "file_size", + "file_format", + "md5sum" + ], + "term": { + "description": "Type of error for the data file object.\n" + } + }, + "experimental_strategy": { + "term": { + "description": "The sequencing strategy used to generate the data file.\n" + }, + "type": "string" + }, + "file_name": { + "term": { + "description": "The name (or part of a name) of a file (of any type).\n" + }, + "type": "string" + }, + "file_size": { + "term": { + "description": "The size of the data file (object) in bytes.\n" + }, + "type": "integer" + }, + "file_state": { + "default": "registered", + "enum": [ + "registered", + "uploading", + "uploaded", + "validating", + "validated", + "submitted", + "processing", + "processed", + "released", + "error" + ], + "term": { + "description": "The current state of the data file object.\n" + } + }, + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "systemAlias": "node_id", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "md5sum": { + "pattern": "^[a-f0-9]{32}$", + "term": { + "description": "The 128-bit hash value expressed as a 32 digit hexadecimal number used as a file's digital fingerprint.\n" + }, + "type": "string" + }, + "object_id": { + "description": "The GUID of the object in the index service.", + "type": "string" + }, + "project_id": { + "term": { + "description": "Unique ID for any specific defined piece of work that is undertaken or attempted to meet a single requirement.\n" + }, + "type": "string" + }, + "read_groups": { + "anyOf": [ + { + "items": { + "additionalProperties": true, + "minItems": 1, + "properties": { + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "submitter_id": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + { + "additionalProperties": true, + "properties": { + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "submitter_id": { + "type": "string" + } + }, + "type": "object" + } + ] + }, + "state": { + "default": "validated", + "downloadable": [ + "uploaded", + "md5summed", + "validating", + "validated", + "error", + "invalid", + "released" + ], + "oneOf": [ + { + "enum": [ + "uploading", + "uploaded", + "md5summing", + "md5summed", + "validating", + "error", + "invalid", + "suppressed", + "redacted", + "live" + ] + }, + { + "enum": [ + "validated", + "submitted", + "released" + ] + } + ], + "public": [ + "live" + ], + "term": { + "description": "The current state of the object.\n" + } + }, + "state_comment": { + "description": "Optional comment about why the file is in the current state, mainly for invalid state.\n", + "type": "string" + }, + "submitter_id": { + "description": "The file ID assigned by the submitter.", + "type": [ + "string", + "null" + ] + }, + "total_variants": { + "description": "The total number of variants detected carrying a base change difference from the reference genome.", + "type": "integer" + }, + "type": { + "enum": [ + "submitted_somatic_mutation" + ] + }, + "updated_datetime": { + "oneOf": [ + { + "format": "date-time", + "type": "string" + }, + { + "type": "null" + } + ], + "term": { + "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" + } + } + }, + "required": [ + "submitter_id", + "file_name", + "file_size", + "data_format", + "md5sum", + "data_category", + "data_type", + "experimental_strategy", + "read_groups" + ], + "submittable": true, + "systemProperties": [ + "id", + "project_id", + "created_datetime", + "updated_datetime", + "state", + "file_state", + "error_type" + ], + "title": "Submitted Somatic Mutation", + "type": "object", + "uniqueKeys": [ + [ + "id" + ], + [ + "project_id", + "submitter_id" + ] + ], + "validators": null + }, + "submitted_unaligned_reads": { + "$schema": "http://json-schema.org/draft-04/schema#", + "additionalProperties": false, + "category": "data_file", + "description": "Data file containing unaligned reads that have not been GDC Harmonized.", + "id": "submitted_unaligned_reads", + "links": [ + { + "backref": "submitted_unaligned_reads_files", + "label": "data_from", + "multiplicity": "many_to_one", + "name": "read_groups", + "required": true, + "target_type": "read_group" + }, + { + "backref": "submitted_unaligned_reads_files", + "label": "data_from", + "multiplicity": "many_to_many", + "name": "core_metadata_collections", + "required": false, + "target_type": "core_metadata_collection" + } + ], + "namespace": "http://gdc.nci.nih.gov", + "program": "*", + "project": "*", + "properties": { + "core_metadata_collections": { + "anyOf": [ + { + "items": { + "additionalProperties": true, + "minItems": 1, + "properties": { + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "submitter_id": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + { + "additionalProperties": true, + "properties": { + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "submitter_id": { + "type": "string" + } + }, + "type": "object" + } + ] + }, + "created_datetime": { + "oneOf": [ + { + "format": "date-time", + "type": "string" + }, + { + "type": "null" + } + ], + "term": { + "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" + } + }, + "data_category": { + "enum": [ + "Sequencing Data", + "Sequencing Reads", + "Raw Sequencing Data" + ], + "term": { + "description": "Broad categorization of the contents of the data file.\n" + } + }, + "data_format": { + "enum": [ + "BAM", + "FASTQ" + ], + "term": { + "description": "Format of the data files.\n" + } + }, + "data_type": { + "enum": [ + "Unaligned Reads" + ], + "term": { + "description": "Specific content type of the data file.\n" + } + }, + "error_type": { + "enum": [ + "file_size", + "file_format", + "md5sum" + ], + "term": { + "description": "Type of error for the data file object.\n" + } + }, + "experimental_strategy": { + "enum": [ + "WGS", + "WXS", + "Low Pass WGS", + "Validation", + "RNA-Seq", + "miRNA-Seq", + "Total RNA-Seq", + "DNA Panel" + ], + "term": { + "description": "The sequencing strategy used to generate the data file.\n" + } + }, + "file_name": { + "term": { + "description": "The name (or part of a name) of a file (of any type).\n" + }, + "type": "string" + }, + "file_size": { + "term": { + "description": "The size of the data file (object) in bytes.\n" + }, + "type": "integer" + }, + "file_state": { + "default": "registered", + "enum": [ + "registered", + "uploading", + "uploaded", + "validating", + "validated", + "submitted", + "processing", + "processed", + "released", + "error" + ], + "term": { + "description": "The current state of the data file object.\n" + } + }, + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "systemAlias": "node_id", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "md5sum": { + "pattern": "^[a-f0-9]{32}$", + "term": { + "description": "The 128-bit hash value expressed as a 32 digit hexadecimal number used as a file's digital fingerprint.\n" + }, + "type": "string" + }, + "object_id": { + "description": "The GUID of the object in the index service.", + "type": "string" + }, + "project_id": { + "term": { + "description": "Unique ID for any specific defined piece of work that is undertaken or attempted to meet a single requirement.\n" + }, + "type": "string" + }, + "read_groups": { + "anyOf": [ + { + "items": { + "additionalProperties": true, + "maxItems": 1, + "minItems": 1, + "properties": { + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "submitter_id": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + { + "additionalProperties": true, + "properties": { + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "submitter_id": { + "type": "string" + } + }, + "type": "object" + } + ] + }, + "state": { + "default": "validated", + "downloadable": [ + "uploaded", + "md5summed", + "validating", + "validated", + "error", + "invalid", + "released" + ], + "oneOf": [ + { + "enum": [ + "uploading", + "uploaded", + "md5summing", + "md5summed", + "validating", + "error", + "invalid", + "suppressed", + "redacted", + "live" + ] + }, + { + "enum": [ + "validated", + "submitted", + "released" + ] + } + ], + "public": [ + "live" + ], + "term": { + "description": "The current state of the object.\n" + } + }, + "state_comment": { + "description": "Optional comment about why the file is in the current state, mainly for invalid state.\n", + "type": "string" + }, + "submitter_id": { + "description": "The file ID assigned by the submitter.", + "type": [ + "string", + "null" + ] + }, + "type": { + "enum": [ + "submitted_unaligned_reads" + ] + }, + "updated_datetime": { + "oneOf": [ + { + "format": "date-time", + "type": "string" + }, + { + "type": "null" + } + ], + "term": { + "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" + } + } + }, + "required": [ + "submitter_id", + "file_name", + "file_size", + "md5sum", + "data_category", + "data_type", + "data_format", + "experimental_strategy", + "read_groups" + ], + "submittable": true, + "systemProperties": [ + "id", + "project_id", + "created_datetime", + "updated_datetime", + "state", + "file_state", + "error_type" + ], + "title": "Submitted Unaligned Reads", + "type": "object", + "uniqueKeys": [ + [ + "id" + ], + [ + "project_id", + "submitter_id" + ] + ], + "validators": null + }, + "treatment": { + "$schema": "http://json-schema.org/draft-04/schema#", + "additionalProperties": false, + "category": "clinical", + "description": "Record of the administration and intention of therapeutic agents provided to a patient to alter the course of a pathologic process.\n", + "id": "treatment", + "links": [ + { + "backref": "treatments", + "label": "describes", + "multiplicity": "many_to_one", + "name": "diagnoses", + "required": true, + "target_type": "diagnosis" + } + ], + "namespace": "http://gdc.nci.nih.gov", + "program": "*", + "project": "*", + "properties": { + "created_datetime": { + "oneOf": [ + { + "format": "date-time", + "type": "string" + }, + { + "type": "null" + } + ], + "term": { + "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" + } + }, + "days_to_treatment": { + "term": { + "description": "Number of days from date of initial pathologic diagnosis that treatment began.\n", + "termDef": { + "cde_id": null, + "cde_version": null, + "source": null, + "term": "Days to Treatment Start", + "term_url": null + } + }, + "type": "number" + }, + "days_to_treatment_end": { + "term": { + "description": "Time interval from the date of the initial pathologic diagnosis to the date of treatment end, represented as a calculated number of days.\n", + "termDef": { + "cde_id": 5102431, + "cde_version": 1, + "source": "caDSR", + "term": "Treatment End Subtract First Pathologic Diagnosis Day Calculation Value", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=5102431&version=1.0" + } + }, + "type": "number" + }, + "days_to_treatment_start": { + "term": { + "description": "Time interval from the date of the initial pathologic diagnosis to the start of treatment, represented as a calculated number of days.\n", + "termDef": { + "cde_id": 5102411, + "cde_version": 1, + "source": "caDSR", + "term": "Treatment Start Subtract First Pathologic Diagnosis Time Day Calculation Value", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=5102411&version=1.0" + } + }, + "type": "number" + }, + "diagnoses": { + "anyOf": [ + { + "items": { + "additionalProperties": true, + "maxItems": 1, + "minItems": 1, + "properties": { + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "submitter_id": { + "type": "string" + } + }, + "type": "object" + }, + "type": "array" + }, + { + "additionalProperties": true, + "properties": { + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "submitter_id": { + "type": "string" + } + }, + "type": "object" + } + ] + }, + "id": { + "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", + "systemAlias": "node_id", + "term": { + "description": "A 128-bit identifier. Depending on the mechanism used to generate it, it is either guaranteed to be different from all other UUIDs/GUIDs generated until 3400 AD or extremely likely to be different. Its relatively small size lends itself well to sorting, ordering, and hashing of all sorts, storing in databases, simple allocation, and ease of programming in general.\n", + "termDef": { + "cde_id": "C54100", + "cde_version": null, + "source": "NCIt", + "term": "Universally Unique Identifier", + "term_url": "https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&version=16.02d&ns=NCI_Thesaurus&code=C54100" + } + }, + "type": "string" + }, + "project_id": { + "term": { + "description": "Unique ID for any specific defined piece of work that is undertaken or attempted to meet a single requirement.\n" + }, + "type": "string" + }, + "state": { + "default": "validated", + "downloadable": [ + "uploaded", + "md5summed", + "validating", + "validated", + "error", + "invalid", + "released" + ], + "oneOf": [ + { + "enum": [ + "uploading", + "uploaded", + "md5summing", + "md5summed", + "validating", + "error", + "invalid", + "suppressed", + "redacted", + "live" + ] + }, + { + "enum": [ + "validated", + "submitted", + "released" + ] + } + ], + "public": [ + "live" + ], + "term": { + "description": "The current state of the object.\n" + } + }, + "submitter_id": { + "type": [ + "string", + "null" + ] + }, + "therapeutic_agents": { + "term": { + "description": "Text identification of the individual agent(s) used as part of a prior treatment regimen.\n", + "termDef": { + "cde_id": 2975232, + "cde_version": 1, + "source": "caDSR", + "term": "Prior Therapy Regimen Text", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2975232&version=1.0" + } + }, + "type": "string" + }, + "treatment_anatomic_site": { + "enum": [ + "Abdomen, total", + "Arm", + "Ascites", + "Axillary", + "Body, total", + "Bone", + "Bone, non-spine", + "Brain, focal", + "Brain, whole", + "Brain-C2", + "Breast", + "Cervical", + "Chest Wall", + "Effusion", + "Epitrochlear", + "Eye", + "Femoral", + "Gastrointestinal, Colon", + "Gastrointestinal, Gallbladder", + "Gastrointestinal, Intestine", + "Gastrointestinal, Liver", + "Gastrointestinal, NOS", + "Gastrointestinal, Pancreas", + "Gastrointestinal, Rectum", + "Gastrointestinal, Stomach", + "Genitourinary, Bladder", + "Genitourinary, Kidney", + "Genitourinary, NOS", + "Genitourinary, Prostate", + "Genitourinary, Prostate and Seminal Vesicles", + "Head", + "Head, Face, or Neck", + "Hilar", + "Iliac-common", + "Iliac-external", + "Inguinal", + "Internal Mammary Nodes", + "Leg", + "Lung", + "Lymph Nodes", + "Lymph node, distant (specify site)", + "Lymph node, locoregional (specify site)", + "Mantle", + "Mediastinal", + "Mediastinum", + "Mesenteric", + "Occipital", + "Other", + "Paraaortic", + "Parametrium", + "Parotid", + "Pelvis", + "Popliteal", + "Primary tumor site", + "Prostate", + "Prostate Bed", + "Prostate, Seminal Vesicles and Lymph Nodes", + "Rectum", + "Retroperitoneal", + "Sacrum", + "Seminal vesicles", + "Shoulder", + "Skin, lower extremity, local", + "Skin, total", + "Skin, trunk, local", + "Skin, upper extremity, local", + "Spine", + "Spine, whole", + "Splenic", + "Submandibular", + "Supraclavicular", + "Supraclavicular/Axillary Level 3", + "Thorax", + "Trunk", + "Unknown", + "Not Reported", + "Not Allowed To Collect" + ], + "term": { + "description": "The anatomic site or field targeted by a treatment regimen or single agent therapy.\n", + "termDef": { + "cde_id": null, + "cde_version": null, + "source": null, + "term": "Treatment Anatomic Site", + "term_url": null + } + } + }, + "treatment_intent_type": { + "term": { + "description": "Text term to identify the reason for the administration of a treatment regimen. [Manually-curated]\n", + "termDef": { + "cde_id": 2793511, + "cde_version": 1, + "source": "caDSR", + "term": "Treatment Regimen Intent Type", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=2793511&version=1.0" + } + }, + "type": "string" + }, + "treatment_or_therapy": { + "enum": [ + "yes", + "no", + "unknown", + "not reported" + ], + "term": { + "description": "A yes/no/unknown/not applicable indicator related to the administration of therapeutic agents received before the body specimen was collected.\n", + "termDef": { + "cde_id": 4231463, + "cde_version": 1, + "source": "caDSR", + "term": "Therapeutic Procedure Prior Specimen Collection Administered Yes No Unknown Not Applicable Indicator", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=4231463&version=1.0" + } + } + }, + "treatment_outcome": { + "enum": [ + "Complete Response", + "Partial Response", + "Treatment Ongoing", + "Treatment Stopped Due to Toxicity", + "Unknown" + ], + "term": { + "description": "Text term that describes the patient¿s final outcome after the treatment was administered.\n", + "termDef": { + "cde_id": 5102383, + "cde_version": 1, + "source": "caDSR", + "term": "Treatment Outcome Type", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=5102383&version=1.0" + } + } + }, + "treatment_type": { + "enum": [ + "Ablation", + "Chemotherapy", + "Concurrent Chemoradiation", + "Cryoablation", + "Embolization", + "Hormone Therapy", + "Internal Radiation", + "Immunotherapy (Including Vaccines)", + "Other", + "Pharmaceutical Therapy", + "Radiation Therapy", + "Stem Cell Treatment", + "Surgery", + "Targeted Molecular Therapy", + "Unknown", + "Not Reported", + "Not Allowed To Collect" + ], + "term": { + "description": "Text term that describes the kind of treatment administered.\n", + "termDef": { + "cde_id": 5102381, + "cde_version": 1, + "source": "caDSR", + "term": "Treatment Method Type", + "term_url": "https://cdebrowser.nci.nih.gov/CDEBrowser/search?elementDetails=9&FirstTimer=0&PageId=ElementDetailsGroup&publicId=5102381&version=1.0" + } + } + }, + "type": { + "enum": [ + "treatment" + ] + }, + "updated_datetime": { + "oneOf": [ + { + "format": "date-time", + "type": "string" + }, + { + "type": "null" + } + ], + "term": { + "description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm]\n" + } + } + }, + "submittable": true, + "systemProperties": [ + "id", + "project_id", + "state", + "created_datetime", + "updated_datetime" + ], + "title": "Treatment", + "type": "object", + "uniqueKeys": [ + [ + "id" + ], + [ + "project_id", + "submitter_id" + ] + ], + "validators": null } } diff --git a/data/schema.json b/data/schema.json index 7fd71adc83..2e8e9f9dde 100644 --- a/data/schema.json +++ b/data/schema.json @@ -1,108 +1,164 @@ { "data": { "__schema": { + "directives": [ + { + "args": [ + { + "defaultValue": null, + "description": "Included when true.", + "name": "if", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + } + ], + "description": "Directs the executor to include this field or fragment only when the `if` argument is true.", + "locations": [ + "FIELD", + "FRAGMENT_SPREAD", + "INLINE_FRAGMENT" + ], + "name": "include" + }, + { + "args": [ + { + "defaultValue": null, + "description": "Skipped when true.", + "name": "if", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + } + ], + "description": "Directs the executor to skip this field or fragment when the `if` argument is true.", + "locations": [ + "FIELD", + "FRAGMENT_SPREAD", + "INLINE_FRAGMENT" + ], + "name": "skip" + } + ], + "mutationType": null, "queryType": { "name": "Root" }, - "mutationType": null, "subscriptionType": null, "types": [ { - "kind": "OBJECT", - "name": "Root", "description": null, + "enumValues": null, "fields": [ { - "name": "transaction_log", - "description": null, "args": [ { - "name": "id", - "description": null, + "defaultValue": null, + "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", + "name": "committable", "type": { "kind": "SCALAR", - "name": "ID", + "name": "Boolean", "ofType": null - }, - "defaultValue": null + } }, { - "name": "type", + "defaultValue": null, "description": null, + "name": "is_dry_run", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null - }, - "defaultValue": null + } }, { - "name": "quick_search", + "defaultValue": null, "description": null, + "name": "quick_search", "type": { "kind": "SCALAR", "name": "ID", "ofType": null - }, - "defaultValue": null + } }, { - "name": "project_id", + "defaultValue": null, "description": null, + "name": "offset", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, { - "name": "project", + "defaultValue": null, "description": null, + "name": "id", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null - }, - "defaultValue": null + } }, { - "name": "program", + "defaultValue": null, "description": null, + "name": "last", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - }, - "defaultValue": null + } }, { - "name": "order_by_asc", + "defaultValue": null, "description": null, + "name": "order_by_asc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "order_by_desc", + "defaultValue": null, + "description": null, + "name": "committed_by", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "project", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "related_cases", + "defaultValue": null, "description": null, + "name": "entities", "type": { "kind": "LIST", "name": null, @@ -111,42 +167,52 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "first", + "defaultValue": null, "description": null, + "name": "state", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "last", + "defaultValue": null, "description": null, + "name": "program", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "offset", + "defaultValue": null, "description": null, + "name": "closed", "type": { "kind": "SCALAR", - "name": "Int", + "name": "Boolean", "ofType": null - }, - "defaultValue": null + } }, { - "name": "entities", + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -155,60 +221,47 @@ "name": "String", "ofType": null } - }, - "defaultValue": null - }, - { - "name": "is_dry_run", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null + } }, { - "name": "closed", + "defaultValue": null, "description": null, + "name": "type", "type": { "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "committable", - "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", - "type": { - "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "state", + "defaultValue": null, "description": null, + "name": "related_cases", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "committed_by", + "defaultValue": null, "description": null, + "name": "first", "type": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null - }, - "defaultValue": null + } } ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "transaction_log", "type": { "kind": "LIST", "name": null, @@ -217,101 +270,104 @@ "name": "TransactionLog", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null + } }, { - "name": "_transaction_log_count", - "description": null, "args": [ { - "name": "id", - "description": null, + "defaultValue": null, + "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", + "name": "committable", "type": { "kind": "SCALAR", - "name": "ID", + "name": "Boolean", "ofType": null - }, - "defaultValue": null + } }, { - "name": "type", + "defaultValue": null, "description": null, + "name": "is_dry_run", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null - }, - "defaultValue": null + } }, { - "name": "quick_search", + "defaultValue": null, "description": null, + "name": "quick_search", "type": { "kind": "SCALAR", "name": "ID", "ofType": null - }, - "defaultValue": null + } }, { - "name": "project_id", + "defaultValue": null, "description": null, + "name": "offset", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, { - "name": "project", + "defaultValue": null, "description": null, + "name": "id", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null - }, - "defaultValue": null + } }, { - "name": "program", + "defaultValue": null, "description": null, + "name": "last", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - }, - "defaultValue": null + } }, { - "name": "order_by_asc", + "defaultValue": null, "description": null, + "name": "order_by_asc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "order_by_desc", + "defaultValue": null, + "description": null, + "name": "committed_by", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "project", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "related_cases", + "defaultValue": null, "description": null, + "name": "entities", "type": { "kind": "LIST", "name": null, @@ -320,42 +376,52 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "first", + "defaultValue": null, "description": null, + "name": "state", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "last", + "defaultValue": null, "description": null, + "name": "program", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "offset", + "defaultValue": null, "description": null, + "name": "closed", "type": { "kind": "SCALAR", - "name": "Int", + "name": "Boolean", "ofType": null - }, - "defaultValue": null + } }, { - "name": "entities", + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -364,95 +430,79 @@ "name": "String", "ofType": null } - }, - "defaultValue": null - }, - { - "name": "is_dry_run", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null + } }, { - "name": "closed", + "defaultValue": null, "description": null, + "name": "type", "type": { "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "committable", - "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", - "type": { - "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "state", + "defaultValue": null, "description": null, + "name": "related_cases", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "committed_by", + "defaultValue": null, "description": null, + "name": "first", "type": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null - }, - "defaultValue": null + } } ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_transaction_log_count", "type": { "kind": "SCALAR", "name": "Int", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, { - "name": "node", - "description": null, "args": [ { - "name": "id", + "defaultValue": null, "description": null, + "name": "order_by_asc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "submitter_id", + "defaultValue": null, "description": null, + "name": "updated_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "ids", + "defaultValue": null, "description": null, + "name": "ids", "type": { "kind": "LIST", "name": null, @@ -461,102 +511,92 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "quick_search", + "defaultValue": null, "description": null, + "name": "quick_search", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "10" + } }, { - "name": "offset", + "defaultValue": null, "description": null, + "name": "updated_after", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "created_before", + "defaultValue": null, "description": null, + "name": "created_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "created_after", + "defaultValue": null, "description": null, + "name": "offset", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - }, - "defaultValue": null + } }, { - "name": "updated_before", + "defaultValue": null, "description": null, + "name": "order_by_desc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "updated_after", + "defaultValue": null, "description": null, + "name": "project_id", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "order_by_asc", + "defaultValue": null, "description": null, + "name": "created_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "order_by_desc", + "defaultValue": null, "description": null, + "name": "id", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "of_type", + "defaultValue": null, "description": null, + "name": "of_type", "type": { "kind": "LIST", "name": null, @@ -565,30 +605,23 @@ "name": "String", "ofType": null } - }, - "defaultValue": null - }, - { - "name": "project_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + } }, { - "name": "category", + "defaultValue": "10", "description": null, + "name": "first", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - }, - "defaultValue": null + } } ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "node", "type": { "kind": "LIST", "name": null, @@ -597,37 +630,24 @@ "name": "Node", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null + } }, { - "name": "data_release", - "description": null, "args": [ { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "submitter_id", + "defaultValue": null, "description": null, + "name": "order_by_asc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "ids", + "defaultValue": null, "description": null, + "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -636,102 +656,88 @@ "name": "String", "ofType": null } - }, - "defaultValue": null - }, - { - "name": "quick_search", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + } }, { - "name": "created_before", + "defaultValue": null, "description": null, + "name": "with_path_to_any", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } }, { - "name": "created_after", + "defaultValue": null, "description": null, + "name": "data_format", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "updated_before", + "defaultValue": null, "description": null, + "name": "file_size", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } }, { - "name": "updated_after", + "defaultValue": null, "description": null, + "name": "created_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "order_by_asc", + "defaultValue": null, "description": null, + "name": "id", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "order_by_desc", + "defaultValue": null, "description": null, + "name": "with_path_to", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } }, { - "name": "with_links", + "defaultValue": null, "description": null, + "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -740,12 +746,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_links_any", + "defaultValue": null, "description": null, + "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -754,12 +760,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "without_links", + "defaultValue": null, "description": null, + "name": "error_type", "type": { "kind": "LIST", "name": null, @@ -768,54 +774,50 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to", + "defaultValue": null, "description": null, + "name": "object_id", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to_any", + "defaultValue": null, "description": null, + "name": "state", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "without_path_to", + "defaultValue": null, "description": null, + "name": "created_after", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "created_datetime", + "defaultValue": null, "description": null, + "name": "file_name", "type": { "kind": "LIST", "name": null, @@ -824,40 +826,36 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "major_version", + "defaultValue": null, "description": null, + "name": "order_by_desc", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "minor_version", + "defaultValue": null, "description": null, + "name": "project_id", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "name", + "defaultValue": null, "description": null, + "name": "file_state", "type": { "kind": "LIST", "name": null, @@ -866,12 +864,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "release_date", + "defaultValue": null, "description": null, + "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -880,91 +878,88 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "released", + "defaultValue": null, "description": null, + "name": "data_type", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "updated_datetime", + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "not", + "defaultValue": null, "description": null, + "name": "with_links", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_data_release", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "data_release", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_data_release_count", - "description": null, - "args": [ + } + }, { - "name": "id", + "defaultValue": null, "description": null, + "name": "offset", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - }, - "defaultValue": null + } }, { - "name": "submitter_id", + "defaultValue": null, "description": null, + "name": "not", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_experimental_metadata", + "ofType": null + } + } }, { - "name": "ids", + "defaultValue": null, "description": null, + "name": "submitter_id", "type": { "kind": "LIST", "name": null, @@ -973,116 +968,153 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "quick_search", + "defaultValue": null, "description": null, + "name": "state_comment", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "first", + "defaultValue": null, "description": null, + "name": "quick_search", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "offset", + "defaultValue": null, "description": null, + "name": "md5sum", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "created_before", + "defaultValue": null, "description": null, + "name": "ids", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "created_after", + "defaultValue": null, "description": null, + "name": "updated_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "updated_before", + "defaultValue": null, "description": null, + "name": "data_category", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "updated_after", + "defaultValue": null, "description": null, + "name": "first", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - }, - "defaultValue": null - }, + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "experimental_metadata", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "experimental_metadata", + "ofType": null + } + } + }, + { + "args": [ { - "name": "order_by_asc", + "defaultValue": null, "description": null, + "name": "order_by_asc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "order_by_desc", + "defaultValue": null, "description": null, + "name": "updated_datetime", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "with_links", + "defaultValue": null, "description": null, + "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_links_any", + "defaultValue": null, "description": null, + "name": "data_format", "type": { "kind": "LIST", "name": null, @@ -1091,26 +1123,46 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "without_links", + "defaultValue": null, "description": null, + "name": "file_size", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to", + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "with_path_to", "type": { "kind": "LIST", "name": null, @@ -1119,40 +1171,40 @@ "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to_any", + "defaultValue": null, "description": null, + "name": "without_links", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "without_path_to", + "defaultValue": null, "description": null, + "name": "created_datetime", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "created_datetime", + "defaultValue": null, "description": null, + "name": "error_type", "type": { "kind": "LIST", "name": null, @@ -1161,40 +1213,50 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "major_version", + "defaultValue": null, "description": null, + "name": "object_id", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "minor_version", + "defaultValue": null, "description": null, + "name": "state", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "name", + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "file_name", "type": { "kind": "LIST", "name": null, @@ -1203,12 +1265,22 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "release_date", + "defaultValue": null, "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -1217,26 +1289,26 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "released", + "defaultValue": null, "description": null, + "name": "file_state", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "updated_datetime", + "defaultValue": null, "description": null, + "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -1245,59 +1317,50 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "not", + "defaultValue": null, "description": null, + "name": "data_type", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_data_release", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null - } - ], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "root", - "description": null, - "args": [ + } + }, { - "name": "id", + "defaultValue": null, "description": null, + "name": "updated_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "submitter_id", + "defaultValue": null, "description": null, + "name": "without_path_to", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } }, { - "name": "ids", + "defaultValue": null, "description": null, + "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -1306,102 +1369,159 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "quick_search", + "defaultValue": null, "description": null, + "name": "offset", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - }, - "defaultValue": null + } }, { - "name": "first", + "defaultValue": null, "description": null, + "name": "not", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_experimental_metadata", + "ofType": null + } + } }, { - "name": "offset", + "defaultValue": null, "description": null, + "name": "submitter_id", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "created_before", + "defaultValue": null, "description": null, + "name": "state_comment", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "created_after", + "defaultValue": null, "description": null, + "name": "quick_search", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "updated_before", + "defaultValue": null, "description": null, + "name": "md5sum", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "updated_after", + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, "description": null, + "name": "updated_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "order_by_asc", + "defaultValue": null, + "description": null, + "name": "data_category", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, "description": null, + "name": "first", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - }, - "defaultValue": null - }, + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_experimental_metadata_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ { - "name": "order_by_desc", + "defaultValue": null, "description": null, + "name": "order_by_asc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "with_links", + "defaultValue": null, "description": null, + "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -1410,26 +1530,26 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_links_any", + "defaultValue": null, "description": null, + "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "without_links", + "defaultValue": null, "description": null, + "name": "data_format", "type": { "kind": "LIST", "name": null, @@ -1438,26 +1558,46 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to", + "defaultValue": null, "description": null, + "name": "file_size", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "Int", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to_any", + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "with_path_to", "type": { "kind": "LIST", "name": null, @@ -1466,26 +1606,26 @@ "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "without_path_to", + "defaultValue": null, "description": null, + "name": "without_links", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "schema_version", + "defaultValue": null, "description": null, + "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -1494,63 +1634,26 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "not", + "defaultValue": null, "description": null, + "name": "error_type", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_root", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "root", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_root_count", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "submitter_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + } }, { - "name": "ids", + "defaultValue": null, "description": null, + "name": "object_id", "type": { "kind": "LIST", "name": null, @@ -1559,102 +1662,88 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "quick_search", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", + "defaultValue": null, "description": null, + "name": "total_variants", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } }, { - "name": "offset", + "defaultValue": null, "description": null, + "name": "state", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "created_before", + "defaultValue": null, "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { "name": "created_after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_before", - "description": null, "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "updated_after", + "defaultValue": null, "description": null, + "name": "file_name", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "order_by_asc", + "defaultValue": null, "description": null, + "name": "order_by_desc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "order_by_desc", + "defaultValue": null, "description": null, + "name": "project_id", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "with_links", + "defaultValue": null, "description": null, + "name": "file_state", "type": { "kind": "LIST", "name": null, @@ -1663,12 +1752,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_links_any", + "defaultValue": null, "description": null, + "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -1677,12 +1766,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "without_links", + "defaultValue": null, "description": null, + "name": "data_type", "type": { "kind": "LIST", "name": null, @@ -1691,12 +1780,22 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to", + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "without_path_to", "type": { "kind": "LIST", "name": null, @@ -1705,40 +1804,50 @@ "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to_any", + "defaultValue": null, "description": null, + "name": "with_links", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "without_path_to", + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "name": "NotPropertiesInput_submitted_somatic_mutation", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "schema_version", + "defaultValue": null, "description": null, + "name": "submitter_id", "type": { "kind": "LIST", "name": null, @@ -1747,59 +1856,50 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "not", + "defaultValue": null, "description": null, + "name": "state_comment", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_root", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null - } - ], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "project", - "description": null, - "args": [ + } + }, { - "name": "id", + "defaultValue": null, "description": null, + "name": "quick_search", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "submitter_id", + "defaultValue": null, "description": null, + "name": "md5sum", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "ids", + "defaultValue": null, "description": null, + "name": "ids", "type": { "kind": "LIST", "name": null, @@ -1808,116 +1908,177 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "quick_search", + "defaultValue": null, "description": null, + "name": "updated_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "first", + "defaultValue": null, "description": null, + "name": "data_category", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "offset", + "defaultValue": null, + "description": null, + "name": "experimental_strategy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, "description": null, + "name": "first", "type": { "kind": "SCALAR", "name": "Int", "ofType": null - }, - "defaultValue": null - }, + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "submitted_somatic_mutation", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "submitted_somatic_mutation", + "ofType": null + } + } + }, + { + "args": [ { - "name": "created_before", + "defaultValue": null, "description": null, + "name": "order_by_asc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "created_after", + "defaultValue": null, "description": null, + "name": "updated_datetime", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "updated_before", + "defaultValue": null, "description": null, + "name": "with_path_to_any", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } }, { - "name": "updated_after", + "defaultValue": null, "description": null, + "name": "data_format", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "order_by_asc", + "defaultValue": null, + "description": null, + "name": "file_size", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, "description": null, + "name": "created_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "order_by_desc", + "defaultValue": null, "description": null, + "name": "id", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "with_links", + "defaultValue": null, "description": null, + "name": "with_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_links_any", + "defaultValue": null, "description": null, + "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -1926,12 +2087,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "without_links", + "defaultValue": null, "description": null, + "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -1940,54 +2101,54 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to", + "defaultValue": null, "description": null, + "name": "error_type", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to_any", + "defaultValue": null, "description": null, + "name": "object_id", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "without_path_to", + "defaultValue": null, "description": null, + "name": "total_variants", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "Int", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "administering_ic", + "defaultValue": null, "description": null, + "name": "state", "type": { "kind": "LIST", "name": null, @@ -1996,12 +2157,22 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "availability_mechanism", + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "file_name", "type": { "kind": "LIST", "name": null, @@ -2010,12 +2181,22 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "availability_type", + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -2024,12 +2205,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "code", + "defaultValue": null, "description": null, + "name": "file_state", "type": { "kind": "LIST", "name": null, @@ -2038,12 +2219,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_description", + "defaultValue": null, "description": null, + "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -2052,12 +2233,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "date_collected", + "defaultValue": null, "description": null, + "name": "data_type", "type": { "kind": "LIST", "name": null, @@ -2066,26 +2247,36 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "dbgap_accession_number", + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "institution", + "defaultValue": null, "description": null, + "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -2094,26 +2285,36 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "intended_release_date", + "defaultValue": null, "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_submitted_somatic_mutation", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "investigator", + "defaultValue": null, "description": null, + "name": "submitter_id", "type": { "kind": "LIST", "name": null, @@ -2122,12 +2323,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "investigator_affiliation", + "defaultValue": null, "description": null, + "name": "state_comment", "type": { "kind": "LIST", "name": null, @@ -2136,12 +2337,22 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "investigator_name", + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "md5sum", "type": { "kind": "LIST", "name": null, @@ -2150,12 +2361,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "location", + "defaultValue": null, "description": null, + "name": "ids", "type": { "kind": "LIST", "name": null, @@ -2164,12 +2375,22 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "name", + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "data_category", "type": { "kind": "LIST", "name": null, @@ -2178,12 +2399,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "project_title", + "defaultValue": null, "description": null, + "name": "experimental_strategy", "type": { "kind": "LIST", "name": null, @@ -2192,54 +2413,87 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "releasable", + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_submitted_somatic_mutation_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, "description": null, + "name": "percent_aligned", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "released", + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "encoding", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "research_focus_area", + "defaultValue": null, "description": null, + "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "research_program", + "defaultValue": null, "description": null, + "name": "sequence_duplication_levels", "type": { "kind": "LIST", "name": null, @@ -2248,12 +2502,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "state", + "defaultValue": null, "description": null, + "name": "submitter_id", "type": { "kind": "LIST", "name": null, @@ -2262,12 +2516,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "support_id", + "defaultValue": null, "description": null, + "name": "basic_statistics", "type": { "kind": "LIST", "name": null, @@ -2276,12 +2530,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "support_source", + "defaultValue": null, "description": null, + "name": "per_base_sequence_content", "type": { "kind": "LIST", "name": null, @@ -2290,91 +2544,88 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "year_awarded", + "defaultValue": null, "description": null, + "name": "kmer_content", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "project_id", + "defaultValue": null, "description": null, + "name": "percent_gc_content", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "not", + "defaultValue": null, "description": null, + "name": "per_tile_sequence_quality", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_project", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "project", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_project_count", - "description": null, - "args": [ + } + }, { - "name": "id", + "defaultValue": null, "description": null, + "name": "created_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "submitter_id", + "defaultValue": null, "description": null, + "name": "id", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "ids", + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, "description": null, + "name": "workflow_link", "type": { "kind": "LIST", "name": null, @@ -2383,102 +2634,116 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "quick_search", + "defaultValue": null, "description": null, + "name": "without_links", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "first", + "defaultValue": null, "description": null, + "name": "created_datetime", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "offset", + "defaultValue": null, "description": null, + "name": "updated_datetime", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "created_before", + "defaultValue": null, "description": null, + "name": "per_sequence_gc_content", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "created_after", + "defaultValue": null, "description": null, + "name": "state", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "updated_before", + "defaultValue": null, "description": null, + "name": "per_base_n_content", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "updated_after", + "defaultValue": null, "description": null, + "name": "created_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "order_by_asc", + "defaultValue": null, "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { "name": "order_by_desc", - "description": null, "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "with_links", + "defaultValue": null, "description": null, + "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -2487,12 +2752,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_links_any", + "defaultValue": null, "description": null, + "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -2501,12 +2766,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "without_links", + "defaultValue": null, "description": null, + "name": "adapter_content", "type": { "kind": "LIST", "name": null, @@ -2515,40 +2780,36 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to", + "defaultValue": null, "description": null, + "name": "workflow_end_datetime", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to_any", + "defaultValue": null, "description": null, + "name": "updated_before", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "without_path_to", + "defaultValue": null, "description": null, + "name": "without_path_to", "type": { "kind": "LIST", "name": null, @@ -2557,12 +2818,12 @@ "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "administering_ic", + "defaultValue": null, "description": null, + "name": "per_base_sequence_quality", "type": { "kind": "LIST", "name": null, @@ -2571,12 +2832,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "availability_mechanism", + "defaultValue": null, "description": null, + "name": "fastq_name", "type": { "kind": "LIST", "name": null, @@ -2585,12 +2846,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "availability_type", + "defaultValue": null, "description": null, + "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -2599,68 +2860,74 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "code", + "defaultValue": null, "description": null, + "name": "offset", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, { - "name": "data_description", + "defaultValue": null, "description": null, + "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_read_group_qc", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "date_collected", + "defaultValue": null, "description": null, + "name": "total_sequences", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "dbgap_accession_number", + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "total_aligned_reads", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "institution", + "defaultValue": null, "description": null, + "name": "sequence_length_distribution", "type": { "kind": "LIST", "name": null, @@ -2669,12 +2936,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "intended_release_date", + "defaultValue": null, "description": null, + "name": "per_sequence_quality_score", "type": { "kind": "LIST", "name": null, @@ -2683,12 +2950,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "investigator", + "defaultValue": null, "description": null, + "name": "ids", "type": { "kind": "LIST", "name": null, @@ -2697,12 +2964,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "investigator_affiliation", + "defaultValue": null, "description": null, + "name": "workflow_type", "type": { "kind": "LIST", "name": null, @@ -2711,12 +2978,22 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "investigator_name", + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "overrepresented_sequences", "type": { "kind": "LIST", "name": null, @@ -2725,12 +3002,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "location", + "defaultValue": null, "description": null, + "name": "workflow_start_datetime", "type": { "kind": "LIST", "name": null, @@ -2739,12 +3016,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "name", + "defaultValue": null, "description": null, + "name": "workflow_version", "type": { "kind": "LIST", "name": null, @@ -2753,54 +3030,91 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "project_title", + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "read_group_qc", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "read_group_qc", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, "description": null, + "name": "percent_aligned", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "releasable", + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "encoding", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "released", + "defaultValue": null, "description": null, + "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "research_focus_area", + "defaultValue": null, "description": null, + "name": "sequence_duplication_levels", "type": { "kind": "LIST", "name": null, @@ -2809,12 +3123,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "research_program", + "defaultValue": null, "description": null, + "name": "submitter_id", "type": { "kind": "LIST", "name": null, @@ -2823,12 +3137,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "state", + "defaultValue": null, "description": null, + "name": "basic_statistics", "type": { "kind": "LIST", "name": null, @@ -2837,12 +3151,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "support_id", + "defaultValue": null, "description": null, + "name": "per_base_sequence_content", "type": { "kind": "LIST", "name": null, @@ -2851,12 +3165,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "support_source", + "defaultValue": null, "description": null, + "name": "kmer_content", "type": { "kind": "LIST", "name": null, @@ -2865,26 +3179,26 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "year_awarded", + "defaultValue": null, "description": null, + "name": "percent_gc_content", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "Int", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "project_id", + "defaultValue": null, "description": null, + "name": "per_tile_sequence_quality", "type": { "kind": "LIST", "name": null, @@ -2893,63 +3207,46 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "not", + "defaultValue": null, "description": null, + "name": "created_before", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_project", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "open_access_doc", - "description": null, - "args": [ + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, { - "name": "id", + "defaultValue": null, "description": null, + "name": "id", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "submitter_id", + "defaultValue": null, "description": null, + "name": "with_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "ids", + "defaultValue": null, "description": null, + "name": "workflow_link", "type": { "kind": "LIST", "name": null, @@ -2958,102 +3255,116 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "quick_search", + "defaultValue": null, "description": null, + "name": "without_links", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "first", + "defaultValue": null, "description": null, + "name": "created_datetime", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "offset", + "defaultValue": null, "description": null, + "name": "updated_datetime", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "created_before", + "defaultValue": null, "description": null, + "name": "per_sequence_gc_content", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "created_after", + "defaultValue": null, "description": null, + "name": "state", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "updated_before", + "defaultValue": null, "description": null, + "name": "per_base_n_content", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "updated_after", + "defaultValue": null, "description": null, + "name": "created_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "order_by_asc", + "defaultValue": null, "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { "name": "order_by_desc", - "description": null, "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "with_links", + "defaultValue": null, "description": null, + "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -3062,12 +3373,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_links_any", + "defaultValue": null, "description": null, + "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -3076,12 +3387,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "without_links", + "defaultValue": null, "description": null, + "name": "adapter_content", "type": { "kind": "LIST", "name": null, @@ -3090,40 +3401,36 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to", + "defaultValue": null, "description": null, + "name": "workflow_end_datetime", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to_any", + "defaultValue": null, "description": null, + "name": "updated_before", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "without_path_to", + "defaultValue": null, "description": null, + "name": "without_path_to", "type": { "kind": "LIST", "name": null, @@ -3132,12 +3439,12 @@ "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "created_datetime", + "defaultValue": null, "description": null, + "name": "per_base_sequence_quality", "type": { "kind": "LIST", "name": null, @@ -3146,12 +3453,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_category", + "defaultValue": null, "description": null, + "name": "fastq_name", "type": { "kind": "LIST", "name": null, @@ -3160,12 +3467,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_format", + "defaultValue": null, "description": null, + "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -3174,82 +3481,88 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_type", + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_read_group_qc", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "doc_url", + "defaultValue": null, "description": null, + "name": "total_sequences", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "error_type", + "defaultValue": null, "description": null, + "name": "quick_search", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "file_name", + "defaultValue": null, "description": null, + "name": "total_aligned_reads", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "file_size", + "defaultValue": null, "description": null, + "name": "sequence_length_distribution", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "file_state", + "defaultValue": null, "description": null, + "name": "per_sequence_quality_score", "type": { "kind": "LIST", "name": null, @@ -3258,12 +3571,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "md5sum", + "defaultValue": null, "description": null, + "name": "ids", "type": { "kind": "LIST", "name": null, @@ -3272,12 +3585,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "object_id", + "defaultValue": null, "description": null, + "name": "workflow_type", "type": { "kind": "LIST", "name": null, @@ -3286,12 +3599,22 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "project_id", + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "overrepresented_sequences", "type": { "kind": "LIST", "name": null, @@ -3300,12 +3623,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "state", + "defaultValue": null, "description": null, + "name": "workflow_start_datetime", "type": { "kind": "LIST", "name": null, @@ -3314,12 +3637,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "updated_datetime", + "defaultValue": null, "description": null, + "name": "workflow_version", "type": { "kind": "LIST", "name": null, @@ -3328,53 +3651,45 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "not", + "defaultValue": null, "description": null, + "name": "first", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_open_access_doc", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "Int", + "ofType": null + } } ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "open_access_doc", - "ofType": null - } - }, + "deprecationReason": null, + "description": null, "isDeprecated": false, - "deprecationReason": null + "name": "_read_group_qc_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, { - "name": "_open_access_doc_count", - "description": null, "args": [ { - "name": "id", + "defaultValue": null, "description": null, + "name": "order_by_asc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "submitter_id", + "defaultValue": null, "description": null, + "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -3383,116 +3698,88 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "ids", + "defaultValue": null, "description": null, + "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "quick_search", + "defaultValue": null, "description": null, + "name": "data_format", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "first", + "defaultValue": null, "description": null, + "name": "file_size", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } }, { - "name": "offset", + "defaultValue": null, "description": null, + "name": "created_before", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "created_before", + "defaultValue": null, "description": null, + "name": "id", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "created_after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by_asc", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by_desc", + "defaultValue": null, "description": null, + "name": "with_path_to", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } }, { - "name": "with_links", + "defaultValue": null, "description": null, + "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -3501,12 +3788,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_links_any", + "defaultValue": null, "description": null, + "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -3515,12 +3802,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "without_links", + "defaultValue": null, "description": null, + "name": "error_type", "type": { "kind": "LIST", "name": null, @@ -3529,54 +3816,50 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to", + "defaultValue": null, "description": null, + "name": "object_id", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to_any", + "defaultValue": null, "description": null, + "name": "state", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "without_path_to", + "defaultValue": null, "description": null, + "name": "created_after", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "created_datetime", + "defaultValue": null, "description": null, + "name": "file_name", "type": { "kind": "LIST", "name": null, @@ -3585,12 +3868,22 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_category", + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -3599,12 +3892,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_format", + "defaultValue": null, "description": null, + "name": "file_state", "type": { "kind": "LIST", "name": null, @@ -3613,12 +3906,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_type", + "defaultValue": null, "description": null, + "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -3627,12 +3920,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "doc_url", + "defaultValue": null, "description": null, + "name": "data_type", "type": { "kind": "LIST", "name": null, @@ -3641,26 +3934,36 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "error_type", + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "file_name", + "defaultValue": null, "description": null, + "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -3669,26 +3972,36 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "file_size", + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_submitted_copy_number", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "file_state", + "defaultValue": null, "description": null, + "name": "submitter_id", "type": { "kind": "LIST", "name": null, @@ -3697,12 +4010,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "md5sum", + "defaultValue": null, "description": null, + "name": "state_comment", "type": { "kind": "LIST", "name": null, @@ -3711,12 +4024,22 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "object_id", + "defaultValue": null, "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "md5sum", "type": { "kind": "LIST", "name": null, @@ -3725,12 +4048,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "project_id", + "defaultValue": null, "description": null, + "name": "ids", "type": { "kind": "LIST", "name": null, @@ -3739,12 +4062,22 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "state", + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "data_category", "type": { "kind": "LIST", "name": null, @@ -3753,12 +4086,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "updated_datetime", + "defaultValue": null, "description": null, + "name": "experimental_strategy", "type": { "kind": "LIST", "name": null, @@ -3767,59 +4100,49 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "not", + "defaultValue": null, "description": null, + "name": "first", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_open_access_doc", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "Int", + "ofType": null + } } ], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, + "deprecationReason": null, + "description": null, "isDeprecated": false, - "deprecationReason": null + "name": "submitted_copy_number", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "submitted_copy_number", + "ofType": null + } + } }, { - "name": "program", - "description": null, "args": [ { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "submitter_id", + "defaultValue": null, "description": null, + "name": "order_by_asc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "ids", + "defaultValue": null, "description": null, + "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -3828,102 +4151,88 @@ "name": "String", "ofType": null } - }, - "defaultValue": null - }, - { - "name": "quick_search", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + } }, { - "name": "created_before", + "defaultValue": null, "description": null, + "name": "with_path_to_any", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } }, { - "name": "created_after", + "defaultValue": null, "description": null, + "name": "data_format", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "updated_before", + "defaultValue": null, "description": null, + "name": "file_size", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } }, { - "name": "updated_after", + "defaultValue": null, "description": null, + "name": "created_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "order_by_asc", + "defaultValue": null, "description": null, + "name": "id", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "order_by_desc", + "defaultValue": null, "description": null, + "name": "with_path_to", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } }, { - "name": "with_links", + "defaultValue": null, "description": null, + "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -3932,12 +4241,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_links_any", + "defaultValue": null, "description": null, + "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -3946,12 +4255,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "without_links", + "defaultValue": null, "description": null, + "name": "error_type", "type": { "kind": "LIST", "name": null, @@ -3960,54 +4269,74 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to", + "defaultValue": null, "description": null, + "name": "object_id", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to_any", + "defaultValue": null, "description": null, + "name": "state", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "without_path_to", + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "file_name", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "dbgap_accession_number", + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -4016,12 +4345,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "name", + "defaultValue": null, "description": null, + "name": "file_state", "type": { "kind": "LIST", "name": null, @@ -4030,63 +4359,26 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "not", + "defaultValue": null, "description": null, + "name": "with_links_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_program", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "program", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_program_count", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "submitter_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + } }, { - "name": "ids", + "defaultValue": null, "description": null, + "name": "data_type", "type": { "kind": "LIST", "name": null, @@ -4095,116 +4387,74 @@ "name": "String", "ofType": null } - }, - "defaultValue": null - }, - { - "name": "quick_search", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + } }, { - "name": "created_after", + "defaultValue": null, "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { "name": "updated_before", - "description": null, "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "updated_after", + "defaultValue": null, "description": null, + "name": "without_path_to", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } }, { - "name": "order_by_asc", + "defaultValue": null, "description": null, + "name": "with_links", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "order_by_desc", + "defaultValue": null, "description": null, + "name": "offset", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - }, - "defaultValue": null + } }, { - "name": "with_links", + "defaultValue": null, "description": null, + "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_submitted_copy_number", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_links_any", + "defaultValue": null, "description": null, + "name": "submitter_id", "type": { "kind": "LIST", "name": null, @@ -4213,12 +4463,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "without_links", + "defaultValue": null, "description": null, + "name": "state_comment", "type": { "kind": "LIST", "name": null, @@ -4227,54 +4477,60 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to", + "defaultValue": null, "description": null, + "name": "quick_search", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "with_path_to_any", + "defaultValue": null, "description": null, + "name": "md5sum", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "without_path_to", + "defaultValue": null, "description": null, + "name": "ids", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "dbgap_accession_number", + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "data_category", "type": { "kind": "LIST", "name": null, @@ -4283,12 +4539,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "name", + "defaultValue": null, "description": null, + "name": "experimental_strategy", "type": { "kind": "LIST", "name": null, @@ -4297,63 +4553,83 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "not", + "defaultValue": null, "description": null, + "name": "first", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_program", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "Int", + "ofType": null + } } ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_submitted_copy_number_count", "type": { "kind": "SCALAR", "name": "Int", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, { - "name": "core_metadata_collection", - "description": null, "args": [ { - "name": "id", + "defaultValue": null, + "description": null, + "name": "major_version", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "updated_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "submitter_id", + "defaultValue": null, "description": null, + "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "ids", + "defaultValue": null, "description": null, + "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -4362,102 +4638,94 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "quick_search", + "defaultValue": null, "description": null, + "name": "released", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } }, { - "name": "first", + "defaultValue": null, "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { "name": "offset", - "description": null, "type": { "kind": "SCALAR", "name": "Int", "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + } }, { - "name": "created_after", + "defaultValue": null, "description": null, + "name": "not", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_data_release", + "ofType": null + } + } }, { - "name": "updated_before", + "defaultValue": null, "description": null, + "name": "created_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "updated_after", + "defaultValue": null, "description": null, + "name": "id", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "order_by_asc", + "defaultValue": null, "description": null, + "name": "with_path_to", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } }, { - "name": "order_by_desc", + "defaultValue": null, "description": null, + "name": "quick_search", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "with_links", + "defaultValue": null, "description": null, + "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -4466,12 +4734,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_links_any", + "defaultValue": null, "description": null, + "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -4480,12 +4748,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "without_links", + "defaultValue": null, "description": null, + "name": "release_date", "type": { "kind": "LIST", "name": null, @@ -4494,124 +4762,108 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to", + "defaultValue": null, "description": null, + "name": "updated_datetime", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to_any", + "defaultValue": null, "description": null, + "name": "ids", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "without_path_to", + "defaultValue": null, "description": null, + "name": "minor_version", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "Int", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "accepts_healthy_volunteers", + "defaultValue": null, "description": null, + "name": "updated_after", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "actual_enrollment", + "defaultValue": null, "description": null, + "name": "created_after", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "arm", + "defaultValue": null, "description": null, + "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "arm_description", + "defaultValue": null, "description": null, + "name": "order_by_desc", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "arm_name", + "defaultValue": null, "description": null, + "name": "first", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, { - "name": "arm_type", + "defaultValue": null, "description": null, + "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -4620,68 +4872,77 @@ "name": "String", "ofType": null } - }, - "defaultValue": null - }, + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "data_release", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "data_release", + "ofType": null + } + } + }, + { + "args": [ { - "name": "brief_summary", + "defaultValue": null, "description": null, + "name": "major_version", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "brief_title", + "defaultValue": null, "description": null, + "name": "order_by_asc", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "category", + "defaultValue": null, "description": null, + "name": "updated_before", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "clinical_trial_website", + "defaultValue": null, "description": null, + "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "collaborators", + "defaultValue": null, "description": null, + "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -4690,110 +4951,94 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "condition", + "defaultValue": null, "description": null, + "name": "released", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "contact", + "defaultValue": null, "description": null, + "name": "offset", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, { - "name": "contributor", + "defaultValue": null, "description": null, + "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_data_release", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "coverage", + "defaultValue": null, "description": null, + "name": "created_before", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "created_datetime", + "defaultValue": null, "description": null, + "name": "id", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "creator", + "defaultValue": null, "description": null, + "name": "with_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_availability_date", + "defaultValue": null, "description": null, + "name": "quick_search", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "data_available", + "defaultValue": null, "description": null, + "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -4802,26 +5047,26 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_available_for_request", + "defaultValue": null, "description": null, + "name": "created_datetime", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_category", + "defaultValue": null, "description": null, + "name": "release_date", "type": { "kind": "LIST", "name": null, @@ -4830,12 +5075,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_format", + "defaultValue": null, "description": null, + "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -4844,12 +5089,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_type", + "defaultValue": null, "description": null, + "name": "ids", "type": { "kind": "LIST", "name": null, @@ -4858,82 +5103,80 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "description", + "defaultValue": null, "description": null, + "name": "minor_version", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "eligibility_criteria", + "defaultValue": null, "description": null, + "name": "updated_after", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "enrollment", + "defaultValue": null, "description": null, + "name": "created_after", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "fda_regulated_device_product", + "defaultValue": null, "description": null, + "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "fda_regulated_drug_product", + "defaultValue": null, "description": null, + "name": "order_by_desc", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, { - "name": "first_posted_date", + "defaultValue": null, "description": null, + "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -4942,40 +5185,59 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_data_release_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "focus", + "defaultValue": null, "description": null, + "name": "updated_before", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "has_data_monitoring_committee", + "defaultValue": null, "description": null, + "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "intervention_type", + "defaultValue": null, "description": null, + "name": "submitter_id", "type": { "kind": "LIST", "name": null, @@ -4984,12 +5246,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "ipd_sharing_statement", + "defaultValue": null, "description": null, + "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -4998,12 +5260,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "language", + "defaultValue": null, "description": null, + "name": "doi", "type": { "kind": "LIST", "name": null, @@ -5012,96 +5274,80 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "last_update_posted_date", + "defaultValue": null, "description": null, + "name": "offset", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, { - "name": "location", + "defaultValue": null, "description": null, + "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_publication", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "locations_removed", + "defaultValue": null, "description": null, + "name": "created_before", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "nct_number", + "defaultValue": null, "description": null, + "name": "id", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "original_estimated_enrollment", + "defaultValue": null, "description": null, + "name": "with_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "primary_completion_date", + "defaultValue": null, "description": null, + "name": "quick_search", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "principle_investigator", + "defaultValue": null, "description": null, + "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -5110,12 +5356,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "project_id", + "defaultValue": null, "description": null, + "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -5124,12 +5370,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "prs_account", + "defaultValue": null, "description": null, + "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -5138,12 +5384,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "publications", + "defaultValue": null, "description": null, + "name": "ids", "type": { "kind": "LIST", "name": null, @@ -5152,12 +5398,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "publisher", + "defaultValue": null, "description": null, + "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -5166,12 +5412,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "recruitment_status", + "defaultValue": null, "description": null, + "name": "state", "type": { "kind": "LIST", "name": null, @@ -5180,68 +5426,56 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "responsible_party", + "defaultValue": null, "description": null, + "name": "updated_after", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "rights", + "defaultValue": null, "description": null, + "name": "created_after", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "secondary_id", + "defaultValue": null, "description": null, + "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "source", + "defaultValue": null, "description": null, + "name": "order_by_desc", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "state", + "defaultValue": null, "description": null, + "name": "pmid", "type": { "kind": "LIST", "name": null, @@ -5250,26 +5484,22 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "study_completion_date", + "defaultValue": null, "description": null, + "name": "first", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, { - "name": "study_design_allocation", + "defaultValue": null, "description": null, + "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -5278,40 +5508,63 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "publication", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "publication", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "study_design_intervention_model", + "defaultValue": null, "description": null, + "name": "updated_before", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "study_design_masking", + "defaultValue": null, "description": null, + "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "study_design_primary_purpose", + "defaultValue": null, "description": null, + "name": "submitter_id", "type": { "kind": "LIST", "name": null, @@ -5320,12 +5573,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "study_phase", + "defaultValue": null, "description": null, + "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -5334,12 +5587,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "study_start_date", + "defaultValue": null, "description": null, + "name": "doi", "type": { "kind": "LIST", "name": null, @@ -5348,54 +5601,80 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "subject", + "defaultValue": null, "description": null, + "name": "offset", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, { - "name": "submitted_date", + "defaultValue": null, "description": null, + "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_publication", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "title", + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "with_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "updated_datetime", + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -5404,12 +5683,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "us_product", + "defaultValue": null, "description": null, + "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -5418,12 +5697,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "verification_date", + "defaultValue": null, "description": null, + "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -5432,53 +5711,26 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "not", + "defaultValue": null, "description": null, + "name": "ids", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_core_metadata_collection", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "core_metadata_collection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_core_metadata_collection_count", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + } }, { - "name": "submitter_id", + "defaultValue": null, "description": null, + "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -5487,12 +5739,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "ids", + "defaultValue": null, "description": null, + "name": "state", "type": { "kind": "LIST", "name": null, @@ -5501,102 +5753,80 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "quick_search", + "defaultValue": null, "description": null, + "name": "updated_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + } }, { - "name": "created_before", + "defaultValue": null, "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { "name": "created_after", - "description": null, "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "updated_before", + "defaultValue": null, "description": null, + "name": "with_path_to_any", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } }, { - "name": "updated_after", + "defaultValue": null, "description": null, + "name": "order_by_desc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "order_by_asc", + "defaultValue": null, "description": null, + "name": "pmid", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "order_by_desc", + "defaultValue": null, "description": null, + "name": "first", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - }, - "defaultValue": null + } }, { - "name": "with_links", + "defaultValue": null, "description": null, + "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -5605,12 +5835,25 @@ "name": "String", "ofType": null } - }, - "defaultValue": null - }, + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_publication_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ { - "name": "with_links_any", + "defaultValue": null, "description": null, + "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -5619,12 +5862,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "without_links", + "defaultValue": null, "description": null, + "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -5633,12 +5876,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to", + "defaultValue": null, "description": null, + "name": "without_path_to", "type": { "kind": "LIST", "name": null, @@ -5647,40 +5890,32 @@ "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to_any", + "defaultValue": null, "description": null, + "name": "order_by_asc", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "without_path_to", + "defaultValue": null, "description": null, + "name": "updated_before", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "accepts_healthy_volunteers", + "defaultValue": null, "description": null, + "name": "dbgap_accession_number", "type": { "kind": "LIST", "name": null, @@ -5689,26 +5924,26 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "actual_enrollment", + "defaultValue": null, "description": null, + "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "arm", + "defaultValue": null, "description": null, + "name": "ids", "type": { "kind": "LIST", "name": null, @@ -5717,12 +5952,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "arm_description", + "defaultValue": null, "description": null, + "name": "name", "type": { "kind": "LIST", "name": null, @@ -5731,96 +5966,76 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "arm_name", + "defaultValue": null, "description": null, + "name": "quick_search", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "arm_type", + "defaultValue": null, "description": null, + "name": "updated_after", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "brief_summary", + "defaultValue": null, "description": null, + "name": "created_after", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "brief_title", + "defaultValue": null, "description": null, + "name": "offset", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, { - "name": "category", + "defaultValue": null, "description": null, + "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_program", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "clinical_trial_website", + "defaultValue": null, "description": null, + "name": "order_by_desc", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "collaborators", + "defaultValue": null, "description": null, + "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -5829,68 +6044,73 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "condition", + "defaultValue": null, "description": null, + "name": "created_before", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "contact", + "defaultValue": null, "description": null, + "name": "id", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "contributor", + "defaultValue": null, "description": null, + "name": "with_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "coverage", + "defaultValue": null, "description": null, + "name": "first", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "program", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "program", + "ofType": null + } + } + }, + { + "args": [ { - "name": "created_datetime", + "defaultValue": null, "description": null, + "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -5899,12 +6119,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "creator", + "defaultValue": null, "description": null, + "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -5913,54 +6133,46 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_availability_date", + "defaultValue": null, "description": null, + "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_available", + "defaultValue": null, "description": null, + "name": "order_by_asc", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "data_available_for_request", + "defaultValue": null, "description": null, + "name": "updated_before", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "data_category", + "defaultValue": null, "description": null, + "name": "dbgap_accession_number", "type": { "kind": "LIST", "name": null, @@ -5969,26 +6181,26 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_format", + "defaultValue": null, "description": null, + "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_type", + "defaultValue": null, "description": null, + "name": "ids", "type": { "kind": "LIST", "name": null, @@ -5997,12 +6209,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "description", + "defaultValue": null, "description": null, + "name": "name", "type": { "kind": "LIST", "name": null, @@ -6011,96 +6223,76 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "eligibility_criteria", + "defaultValue": null, "description": null, + "name": "quick_search", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, { - "name": "enrollment", + "defaultValue": null, "description": null, + "name": "updated_after", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "fda_regulated_device_product", + "defaultValue": null, "description": null, + "name": "created_after", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "fda_regulated_drug_product", + "defaultValue": null, "description": null, + "name": "offset", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, { - "name": "first_posted_date", + "defaultValue": null, "description": null, + "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_program", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "focus", + "defaultValue": null, "description": null, + "name": "order_by_desc", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "has_data_monitoring_committee", + "defaultValue": null, "description": null, + "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -6109,96 +6301,103 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "intervention_type", + "defaultValue": null, "description": null, + "name": "created_before", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "ipd_sharing_statement", + "defaultValue": null, "description": null, + "name": "id", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "language", + "defaultValue": null, "description": null, + "name": "with_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "last_update_posted_date", + "defaultValue": null, "description": null, + "name": "first", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_program_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "location", + "defaultValue": null, "description": null, + "name": "updated_before", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "locations_removed", + "defaultValue": null, "description": null, + "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "nct_number", + "defaultValue": null, "description": null, + "name": "acknowledgee", "type": { "kind": "LIST", "name": null, @@ -6207,12 +6406,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "original_estimated_enrollment", + "defaultValue": null, "description": null, + "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -6221,40 +6420,36 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "primary_completion_date", + "defaultValue": null, "description": null, + "name": "offset", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, { - "name": "principle_investigator", + "defaultValue": null, "description": null, + "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_acknowledgement", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "project_id", + "defaultValue": null, "description": null, + "name": "submitter_id", "type": { "kind": "LIST", "name": null, @@ -6263,68 +6458,56 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "prs_account", + "defaultValue": null, "description": null, + "name": "created_before", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "publications", + "defaultValue": null, "description": null, + "name": "id", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "publisher", + "defaultValue": null, "description": null, + "name": "with_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "recruitment_status", + "defaultValue": null, "description": null, + "name": "quick_search", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "responsible_party", + "defaultValue": null, "description": null, + "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -6333,12 +6516,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "rights", + "defaultValue": null, "description": null, + "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -6347,12 +6530,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "secondary_id", + "defaultValue": null, "description": null, + "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -6361,12 +6544,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "source", + "defaultValue": null, "description": null, + "name": "ids", "type": { "kind": "LIST", "name": null, @@ -6375,12 +6558,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "state", + "defaultValue": null, "description": null, + "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -6389,12 +6572,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "study_completion_date", + "defaultValue": null, "description": null, + "name": "state", "type": { "kind": "LIST", "name": null, @@ -6403,40 +6586,66 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "study_design_allocation", + "defaultValue": null, "description": null, + "name": "created_after", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "study_design_intervention_model", + "defaultValue": null, "description": null, + "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, { - "name": "study_design_masking", + "defaultValue": null, "description": null, + "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -6445,26 +6654,63 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "acknowledgement", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "acknowledgement", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "study_design_primary_purpose", + "defaultValue": null, "description": null, + "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "study_phase", + "defaultValue": null, "description": null, + "name": "acknowledgee", "type": { "kind": "LIST", "name": null, @@ -6473,12 +6719,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "study_start_date", + "defaultValue": null, "description": null, + "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -6487,26 +6733,36 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "subject", + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_acknowledgement", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "submitted_date", + "defaultValue": null, "description": null, + "name": "submitter_id", "type": { "kind": "LIST", "name": null, @@ -6515,26 +6771,56 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "title", + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "with_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "updated_datetime", + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -6543,12 +6829,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "us_product", + "defaultValue": null, "description": null, + "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -6557,12 +6843,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "verification_date", + "defaultValue": null, "description": null, + "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -6571,49 +6857,26 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "not", + "defaultValue": null, "description": null, + "name": "ids", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_core_metadata_collection", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null - } - ], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "clinical_trial_file", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + } }, { - "name": "submitter_id", + "defaultValue": null, "description": null, + "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -6622,12 +6885,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "ids", + "defaultValue": null, "description": null, + "name": "state", "type": { "kind": "LIST", "name": null, @@ -6636,102 +6899,66 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "quick_search", + "defaultValue": null, "description": null, + "name": "updated_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + } }, { - "name": "created_before", + "defaultValue": null, "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { "name": "created_after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_before", - "description": null, "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "updated_after", + "defaultValue": null, "description": null, + "name": "with_path_to_any", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } }, { - "name": "order_by_asc", + "defaultValue": null, "description": null, + "name": "order_by_desc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "order_by_desc", + "defaultValue": null, "description": null, + "name": "first", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - }, - "defaultValue": null + } }, { - "name": "with_links", + "defaultValue": null, "description": null, + "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -6740,12 +6967,25 @@ "name": "String", "ofType": null } - }, - "defaultValue": null - }, + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_acknowledgement_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ { - "name": "with_links_any", + "defaultValue": null, "description": null, + "name": "library_name", "type": { "kind": "LIST", "name": null, @@ -6754,54 +6994,50 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "without_links", + "defaultValue": null, "description": null, + "name": "is_paired_end", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to", + "defaultValue": null, "description": null, + "name": "order_by_asc", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "with_path_to_any", + "defaultValue": null, "description": null, + "name": "adapter_sequence", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "without_path_to", + "defaultValue": null, "description": null, + "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, @@ -6810,12 +7046,12 @@ "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "created_datetime", + "defaultValue": null, "description": null, + "name": "library_strand", "type": { "kind": "LIST", "name": null, @@ -6824,12 +7060,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_category", + "defaultValue": null, "description": null, + "name": "submitter_id", "type": { "kind": "LIST", "name": null, @@ -6838,12 +7074,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_format", + "defaultValue": null, "description": null, + "name": "library_preparation_kit_name", "type": { "kind": "LIST", "name": null, @@ -6852,12 +7088,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_type", + "defaultValue": null, "description": null, + "name": "base_caller_version", "type": { "kind": "LIST", "name": null, @@ -6866,12 +7102,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "error_type", + "defaultValue": null, "description": null, + "name": "target_capture_kit_name", "type": { "kind": "LIST", "name": null, @@ -6880,12 +7116,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "file_name", + "defaultValue": null, "description": null, + "name": "library_preparation_kit_vendor", "type": { "kind": "LIST", "name": null, @@ -6894,26 +7130,60 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "file_size", + "defaultValue": null, "description": null, + "name": "base_caller_name", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "file_state", + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, "description": null, + "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -6922,12 +7192,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "md5sum", + "defaultValue": null, "description": null, + "name": "size_selection_range", "type": { "kind": "LIST", "name": null, @@ -6936,12 +7206,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "object_id", + "defaultValue": null, "description": null, + "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -6950,12 +7220,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "project_id", + "defaultValue": null, "description": null, + "name": "library_preparation_kit_version", "type": { "kind": "LIST", "name": null, @@ -6964,12 +7234,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "state", + "defaultValue": null, "description": null, + "name": "sequencing_date", "type": { "kind": "LIST", "name": null, @@ -6978,12 +7248,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "updated_datetime", + "defaultValue": null, "description": null, + "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -6992,53 +7262,40 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "not", + "defaultValue": null, "description": null, + "name": "to_trim_adapter_sequence", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_clinical_trial_file", + "kind": "SCALAR", + "name": "Boolean", "ofType": null } - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "clinical_trial_file", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_clinical_trial_file_count", - "description": null, - "args": [ + } + }, { - "name": "id", + "defaultValue": null, "description": null, + "name": "RIN", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } }, { - "name": "submitter_id", + "defaultValue": null, "description": null, + "name": "platform", "type": { "kind": "LIST", "name": null, @@ -7047,12 +7304,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "ids", + "defaultValue": null, "description": null, + "name": "state", "type": { "kind": "LIST", "name": null, @@ -7061,116 +7318,140 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "quick_search", + "defaultValue": null, "description": null, + "name": "flow_cell_barcode", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "first", + "defaultValue": null, "description": null, + "name": "barcoding_applied", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } }, { - "name": "offset", + "defaultValue": null, "description": null, + "name": "created_after", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "created_before", + "defaultValue": null, "description": null, + "name": "library_selection", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "created_after", + "defaultValue": null, "description": null, + "name": "order_by_desc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "updated_before", + "defaultValue": null, "description": null, + "name": "project_id", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "updated_after", + "defaultValue": null, "description": null, + "name": "library_preparation_kit_catalog_number", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "order_by_asc", + "defaultValue": null, "description": null, + "name": "with_links_any", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "order_by_desc", + "defaultValue": null, "description": null, + "name": "updated_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "with_links", + "defaultValue": null, "description": null, + "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_links_any", + "defaultValue": null, "description": null, + "name": "target_capture_kit_target_region", "type": { "kind": "LIST", "name": null, @@ -7179,12 +7460,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "without_links", + "defaultValue": null, "description": null, + "name": "target_capture_kit_version", "type": { "kind": "LIST", "name": null, @@ -7193,54 +7474,64 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to", + "defaultValue": null, "description": null, + "name": "with_links", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to_any", + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "name": "NotPropertiesInput_read_group", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "without_path_to", + "defaultValue": null, "description": null, + "name": "instrument_model", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "created_datetime", + "defaultValue": null, "description": null, + "name": "read_group_name", "type": { "kind": "LIST", "name": null, @@ -7249,12 +7540,22 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_category", + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "library_strategy", "type": { "kind": "LIST", "name": null, @@ -7263,12 +7564,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_format", + "defaultValue": null, "description": null, + "name": "spike_ins_concentration", "type": { "kind": "LIST", "name": null, @@ -7277,12 +7578,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_type", + "defaultValue": null, "description": null, + "name": "adapter_name", "type": { "kind": "LIST", "name": null, @@ -7291,12 +7592,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "error_type", + "defaultValue": null, "description": null, + "name": "ids", "type": { "kind": "LIST", "name": null, @@ -7305,40 +7606,40 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "file_name", + "defaultValue": null, "description": null, + "name": "includes_spike_ins", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "file_size", + "defaultValue": null, "description": null, + "name": "read_length", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "Int", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "file_state", + "defaultValue": null, "description": null, + "name": "experiment_name", "type": { "kind": "LIST", "name": null, @@ -7347,12 +7648,22 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "md5sum", + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "spike_ins_fasta", "type": { "kind": "LIST", "name": null, @@ -7361,12 +7672,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "object_id", + "defaultValue": null, "description": null, + "name": "target_capture_kit_vendor", "type": { "kind": "LIST", "name": null, @@ -7375,12 +7686,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "project_id", + "defaultValue": null, "description": null, + "name": "target_capture_kit_catalog_number", "type": { "kind": "LIST", "name": null, @@ -7389,12 +7700,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "state", + "defaultValue": null, "description": null, + "name": "sequencing_center", "type": { "kind": "LIST", "name": null, @@ -7403,12 +7714,39 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "updated_datetime", + "defaultValue": null, "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "read_group", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "read_group", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "library_name", "type": { "kind": "LIST", "name": null, @@ -7417,59 +7755,36 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "not", + "defaultValue": null, "description": null, + "name": "is_paired_end", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_clinical_trial_file", + "kind": "SCALAR", + "name": "Boolean", "ofType": null } - }, - "defaultValue": null - } - ], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datanode", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + } }, { - "name": "submitter_id", + "defaultValue": null, "description": null, + "name": "order_by_asc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "ids", + "defaultValue": null, "description": null, + "name": "adapter_sequence", "type": { "kind": "LIST", "name": null, @@ -7478,242 +7793,426 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "quick_search", + "defaultValue": null, "description": null, + "name": "with_path_to_any", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } }, { - "name": "first", + "defaultValue": null, "description": null, + "name": "library_strand", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "10" + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "offset", + "defaultValue": null, "description": null, + "name": "submitter_id", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "created_before", + "defaultValue": null, "description": null, + "name": "library_preparation_kit_name", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "created_after", + "defaultValue": null, "description": null, + "name": "base_caller_version", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "updated_before", + "defaultValue": null, "description": null, + "name": "target_capture_kit_name", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "updated_after", + "defaultValue": null, "description": null, + "name": "library_preparation_kit_vendor", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "order_by_asc", + "defaultValue": null, "description": null, + "name": "base_caller_name", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "order_by_desc", + "defaultValue": null, "description": null, + "name": "created_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "created_datetime", + "defaultValue": null, "description": null, + "name": "id", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "data_category", + "defaultValue": null, "description": null, + "name": "with_path_to", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } }, { - "name": "data_format", + "defaultValue": null, "description": null, + "name": "without_links", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "data_type", + "defaultValue": null, "description": null, + "name": "size_selection_range", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "error_type", + "defaultValue": null, "description": null, + "name": "created_datetime", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "file_name", + "defaultValue": null, "description": null, + "name": "library_preparation_kit_version", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "file_size", + "defaultValue": null, "description": null, + "name": "sequencing_date", "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "file_state", + "defaultValue": null, "description": null, + "name": "updated_datetime", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "md5sum", + "defaultValue": null, "description": null, + "name": "to_trim_adapter_sequence", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } }, { - "name": "object_id", + "defaultValue": null, "description": null, + "name": "RIN", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } }, { - "name": "project_id", + "defaultValue": null, "description": null, + "name": "platform", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { + "defaultValue": null, + "description": null, "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "flow_cell_barcode", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "barcoding_applied", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, "description": null, + "name": "created_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "updated_datetime", + "defaultValue": null, + "description": null, + "name": "library_selection", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, "description": null, + "name": "order_by_desc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "type", + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_preparation_kit_catalog_number", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, "description": null, + "name": "updated_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "of_type", + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, "description": null, + "name": "target_capture_kit_target_region", "type": { "kind": "LIST", "name": null, @@ -7722,1522 +8221,1291 @@ "name": "String", "ofType": null } - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DataNode", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_node_type", - "description": null, - "args": [ + } + }, { - "name": "first", + "defaultValue": null, + "description": null, + "name": "target_capture_kit_version", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, "description": null, + "name": "offset", "type": { "kind": "SCALAR", "name": "Int", "ofType": null - }, - "defaultValue": "10" + } }, { - "name": "order_by_asc", + "defaultValue": null, "description": null, + "name": "not", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_read_group", + "ofType": null + } + } }, { - "name": "order_by_desc", + "defaultValue": null, "description": null, + "name": "instrument_model", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "title", + "defaultValue": null, "description": null, + "name": "read_group_name", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "constraints", + "defaultValue": null, "description": null, + "name": "quick_search", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "systemProperties", + "defaultValue": null, "description": null, + "name": "library_strategy", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "type", + "defaultValue": null, "description": null, + "name": "spike_ins_concentration", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "project", + "defaultValue": null, "description": null, + "name": "adapter_name", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "required", + "defaultValue": null, "description": null, + "name": "ids", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "program", + "defaultValue": null, "description": null, + "name": "includes_spike_ins", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } }, { - "name": "submittable", + "defaultValue": null, "description": null, + "name": "read_length", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } }, { - "name": "validators", + "defaultValue": null, "description": null, + "name": "experiment_name", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "id", + "defaultValue": null, "description": null, + "name": "updated_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "description", + "defaultValue": null, "description": null, + "name": "spike_ins_fasta", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "namespace", + "defaultValue": null, "description": null, + "name": "target_capture_kit_vendor", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "uniqueKeys", + "defaultValue": null, "description": null, + "name": "target_capture_kit_catalog_number", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "sequencing_center", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - }, - "defaultValue": null - }, + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_read_group_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ { - "name": "root", + "defaultValue": null, "description": null, + "name": "order_by_asc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_treatment", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } }, { - "name": "links", + "defaultValue": null, "description": null, + "name": "created_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "category", + "defaultValue": null, "description": null, + "name": "id", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "treatment_outcome", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "treatment_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "additionalProperties", + "defaultValue": null, "description": null, + "name": "created_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "properties", + "defaultValue": null, "description": null, + "name": "order_by_desc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "NodeType", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "viewer", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "viewer", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TransactionLog", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "is_dry_run", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "closed", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "committed_by", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "state", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "quick_search", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "submitter", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "role", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "program", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "project", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_datetime", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "canonical_json", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "project_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "snapshots", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TransactionSnapshot", - "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "treatment_intent_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "treatment_or_therapy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "therapeutic_agents", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_treatment", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "treatment_anatomic_site", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_treatment_end", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_treatment_start", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "documents", + ], + "deprecationReason": null, "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TransactionDocument", - "ofType": null - } - }, "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "related_cases", - "description": null, - "args": [], + "name": "treatment", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "OBJECT", - "name": "TransactionResponseEntityRelatedCases", + "name": "treatment", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "ID", - "description": "The `ID` scalar type represents a unique identifier, often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as `\"4\"`) or integer (such as `4`) input value will be accepted as an ID.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "Boolean", - "description": "The `Boolean` scalar type represents `true` or `false`.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "String", - "description": "The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TransactionSnapshot", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "transaction_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "action", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "old_props", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "new_props", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "Int", - "description": "The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31 - 1) and 2^31 - 1 since represented in JSON as double-precision floating point numbers specifiedby [IEEE 754](http://en.wikipedia.org/wiki/IEEE_floating_point).", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TransactionDocument", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, { - "name": "transaction_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "doc_format", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "doc", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "doc_size", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "response_json", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "response", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "TransactionResponse", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TransactionResponse", - "description": null, - "fields": [ - { - "name": "transaction_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "success", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "entity_error_count", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "transactional_error_count", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "code", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "message", + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_treatment", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "treatment_outcome", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "treatment_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "treatment_intent_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "treatment_or_therapy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "therapeutic_agents", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_treatment", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "treatment_anatomic_site", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_treatment_end", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_treatment_start", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "transactional_errors", - "description": null, - "args": [], + "name": "_treatment_count", "type": { "kind": "SCALAR", "name": "Int", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, { - "name": "created_entity_count", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_entity_count", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "released_entity_count", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cases_related_to_updated_entities_count", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cases_related_to_created_entities_count", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "entities", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TransactionResponseEntity", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TransactionResponseEntity", - "description": null, - "fields": [ - { - "name": "valid", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "action", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "unique_keys", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "related_cases", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TransactionResponseEntityRelatedCases", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "errors", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TransactionResponseError", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "warnings", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TransactionResponseEntityRelatedCases", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "submitter_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TransactionResponseError", - "description": null, - "fields": [ - { - "name": "keys", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dependents", - "description": "List of entities that depend on this entity such that the transaction failed.", - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "GenericEntity", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "message", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "GenericEntity", - "description": "Skeleton properties to reference generic entities", - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INTERFACE", - "name": "Node", - "description": "The query object that represents the psqlgraph.Node base", - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "submitter_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "project_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_datetime", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_datetime", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "data_release", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "root", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "project", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "program", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "core_metadata_collection", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "open_access_doc", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "clinical_trial_file", - "ofType": null - } - ] - }, - { - "kind": "OBJECT", - "name": "data_release", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "submitter_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "project_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_datetime", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_datetime", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "major_version", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "minor_version", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "release_date", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "released", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "roots", - "description": null, "args": [ { - "name": "id", + "defaultValue": null, "description": null, + "name": "order_by_asc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "submitter_id", + "defaultValue": null, "description": null, + "name": "updated_datetime", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "ids", + "defaultValue": null, "description": null, + "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "quick_search", + "defaultValue": null, "description": null, + "name": "biomarker_signal", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } }, { - "name": "first", + "defaultValue": null, "description": null, + "name": "submitter_id", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "offset", + "defaultValue": null, "description": null, + "name": "run_name", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "created_before", + "defaultValue": null, "description": null, + "name": "created_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "created_after", + "defaultValue": null, "description": null, + "name": "id", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "updated_before", + "defaultValue": null, "description": null, + "name": "with_path_to", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } }, { - "name": "updated_after", + "defaultValue": null, "description": null, + "name": "cell_type", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "order_by_asc", + "defaultValue": null, "description": null, + "name": "without_links", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "order_by_desc", + "defaultValue": null, "description": null, + "name": "relative_nuclear_size", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } }, { - "name": "with_links", + "defaultValue": null, "description": null, + "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -9246,12 +9514,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_links_any", + "defaultValue": null, "description": null, + "name": "er_localization", "type": { "kind": "LIST", "name": null, @@ -9260,237 +9528,305 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "without_links", + "defaultValue": null, "description": null, + "name": "relative_er_intensity", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to", + "defaultValue": null, "description": null, + "name": "state", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to_any", + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "project_id", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "without_path_to", + "defaultValue": null, "description": null, + "name": "with_links_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "schema_version", + "defaultValue": null, "description": null, + "name": "ck_signal", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "not", + "defaultValue": null, "description": null, + "name": "relative_nuclear_intensity", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_root", + "kind": "SCALAR", + "name": "Float", "ofType": null } - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "root", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_roots_count", - "description": null, - "args": [ + } + }, { - "name": "id", + "defaultValue": null, "description": null, + "name": "updated_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "submitter_id", + "defaultValue": null, "description": null, + "name": "without_path_to", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } }, { - "name": "ids", + "defaultValue": null, "description": null, + "name": "cell_count", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "quick_search", + "defaultValue": null, "description": null, + "name": "with_links", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "first", + "defaultValue": null, "description": null, + "name": "offset", "type": { "kind": "SCALAR", "name": "Int", "ofType": null - }, - "defaultValue": null + } }, { - "name": "offset", + "defaultValue": null, "description": null, + "name": "not", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_slide_count", + "ofType": null + } + } }, { - "name": "created_before", + "defaultValue": null, "description": null, + "name": "relative_cytokeratin_intensity", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } }, { - "name": "created_after", + "defaultValue": null, "description": null, + "name": "quick_search", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "updated_before", + "defaultValue": null, "description": null, + "name": "frame_identifier", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "updated_after", + "defaultValue": null, + "description": null, + "name": "cell_identifier", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, "description": null, + "name": "updated_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "order_by_asc", + "defaultValue": null, "description": null, + "name": "first", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - }, - "defaultValue": null - }, + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "slide_count", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "slide_count", + "ofType": null + } + } + }, + { + "args": [ { - "name": "order_by_desc", + "defaultValue": null, "description": null, + "name": "order_by_asc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "with_links", + "defaultValue": null, "description": null, + "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -9499,68 +9835,88 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_links_any", + "defaultValue": null, "description": null, + "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "without_links", + "defaultValue": null, "description": null, + "name": "biomarker_signal", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to", + "defaultValue": null, "description": null, + "name": "submitter_id", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to_any", + "defaultValue": null, "description": null, + "name": "run_name", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "without_path_to", + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "with_path_to", "type": { "kind": "LIST", "name": null, @@ -9569,12 +9925,12 @@ "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "created_datetime", + "defaultValue": null, "description": null, + "name": "cell_type", "type": { "kind": "LIST", "name": null, @@ -9583,26 +9939,26 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "major_version", + "defaultValue": null, "description": null, + "name": "without_links", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "minor_version", + "defaultValue": null, "description": null, + "name": "relative_nuclear_size", "type": { "kind": "LIST", "name": null, @@ -9611,12 +9967,12 @@ "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "name", + "defaultValue": null, "description": null, + "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -9625,12 +9981,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "release_date", + "defaultValue": null, "description": null, + "name": "er_localization", "type": { "kind": "LIST", "name": null, @@ -9639,26 +9995,26 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "released", + "defaultValue": null, "description": null, + "name": "relative_er_intensity", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "updated_datetime", + "defaultValue": null, "description": null, + "name": "state", "type": { "kind": "LIST", "name": null, @@ -9667,69 +10023,46 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "not", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_data_release", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_transaction_logs_count", - "description": null, - "args": [ - { - "name": "id", + "defaultValue": null, "description": null, + "name": "created_after", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "type", + "defaultValue": null, "description": null, + "name": "order_by_desc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "quick_search", + "defaultValue": null, "description": null, + "name": "project_id", "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "project_id", + "defaultValue": null, "description": null, + "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -9738,203 +10071,239 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "project", + "defaultValue": null, "description": null, + "name": "ck_signal", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } }, { - "name": "program", + "defaultValue": null, "description": null, + "name": "relative_nuclear_intensity", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } }, { - "name": "order_by_asc", + "defaultValue": null, "description": null, + "name": "updated_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "order_by_desc", + "defaultValue": null, "description": null, + "name": "without_path_to", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } }, { - "name": "related_cases", + "defaultValue": null, "description": null, + "name": "cell_count", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "first", + "defaultValue": null, "description": null, + "name": "with_links", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "last", + "defaultValue": null, "description": null, + "name": "offset", "type": { "kind": "SCALAR", "name": "Int", "ofType": null - }, - "defaultValue": null + } }, { - "name": "offset", + "defaultValue": null, "description": null, + "name": "not", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_slide_count", + "ofType": null + } + } }, { - "name": "entities", + "defaultValue": null, "description": null, + "name": "relative_cytokeratin_intensity", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "is_dry_run", + "defaultValue": null, "description": null, + "name": "quick_search", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "closed", + "defaultValue": null, "description": null, + "name": "frame_identifier", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "committable", - "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "cell_identifier", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "state", + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, "description": null, + "name": "updated_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "committed_by", + "defaultValue": null, "description": null, + "name": "first", "type": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null - }, - "defaultValue": null + } } ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_slide_count_count", "type": { "kind": "SCALAR", "name": "Int", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, { - "name": "_transaction_logs", - "description": null, "args": [ { - "name": "id", + "defaultValue": null, "description": null, + "name": "year_of_diagnosis", "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } }, { - "name": "type", + "defaultValue": null, "description": null, + "name": "order_by_asc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null - }, - { - "name": "quick_search", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null + } }, { - "name": "project_id", + "defaultValue": null, "description": null, + "name": "method_of_diagnosis", "type": { "kind": "LIST", "name": null, @@ -9943,52 +10312,68 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "project", + "defaultValue": null, "description": null, + "name": "laterality", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "program", + "defaultValue": null, "description": null, + "name": "ann_arbor_pathologic_stage", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "order_by_asc", + "defaultValue": null, "description": null, + "name": "submitter_id", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "order_by_desc", + "defaultValue": null, "description": null, + "name": "vital_status", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "related_cases", + "defaultValue": null, "description": null, + "name": "morphology", "type": { "kind": "LIST", "name": null, @@ -9997,42 +10382,50 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "first", + "defaultValue": null, "description": null, + "name": "ann_arbor_clinical_stage", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "last", + "defaultValue": null, "description": null, + "name": "created_before", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "offset", + "defaultValue": null, "description": null, + "name": "days_to_last_known_disease_status", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } }, { - "name": "entities", + "defaultValue": null, "description": null, + "name": "perineural_invasion_present", "type": { "kind": "LIST", "name": null, @@ -10041,99 +10434,96 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "is_dry_run", + "defaultValue": null, "description": null, + "name": "days_to_hiv_diagnosis", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } }, { - "name": "closed", + "defaultValue": null, "description": null, + "name": "ajcc_pathologic_m", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "committable", - "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "state", + "defaultValue": null, "description": null, + "name": "days_to_last_follow_up", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } }, { - "name": "committed_by", + "defaultValue": null, "description": null, + "name": "prior_treatment", "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TransactionLog", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_links", - "description": null, - "args": [ + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, { - "name": "id", + "defaultValue": null, "description": null, + "name": "ajcc_clinical_t", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "submitter_id", + "defaultValue": null, "description": null, + "name": "colon_polyps_history", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "ids", + "defaultValue": null, "description": null, + "name": "ajcc_pathologic_n", "type": { "kind": "LIST", "name": null, @@ -10142,270 +10532,186 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "quick_search", + "defaultValue": null, "description": null, + "name": "ajcc_clinical_n", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "first", + "defaultValue": null, "description": null, + "name": "ajcc_clinical_m", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "10" + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "offset", + "defaultValue": null, "description": null, + "name": "ldh_level_at_diagnosis", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } }, { - "name": "created_before", + "defaultValue": null, "description": null, + "name": "created_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "created_after", + "defaultValue": null, "description": null, + "name": "project_id", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "updated_before", + "defaultValue": null, "description": null, + "name": "residual_disease", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "updated_after", + "defaultValue": null, "description": null, + "name": "updated_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "order_by_asc", + "defaultValue": null, "description": null, + "name": "without_path_to", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } }, { - "name": "order_by_desc", + "defaultValue": null, "description": null, + "name": "ajcc_pathologic_stage", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "project_id", + "defaultValue": null, "description": null, + "name": "lymphatic_invasion_present", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "category", + "defaultValue": null, "description": null, + "name": "with_links", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "Float", - "description": "The `Float` scalar type represents signed double-precision fractional values as specified by [IEEE 754](http://en.wikipedia.org/wiki/IEEE_floating_point). ", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "root", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "submitter_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "project_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_datetime", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_datetime", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "schema_version", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data_releases", - "description": null, - "args": [ + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, { - "name": "id", + "defaultValue": null, "description": null, + "name": "progression_or_recurrence", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "submitter_id", + "defaultValue": null, "description": null, + "name": "not", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_diagnosis", + "ofType": null + } + } }, { - "name": "ids", + "defaultValue": null, "description": null, + "name": "cause_of_death", "type": { "kind": "LIST", "name": null, @@ -10414,102 +10720,92 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "quick_search", + "defaultValue": null, "description": null, + "name": "burkitt_lymphoma_clinical_variant", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "created_after", + "defaultValue": null, "description": null, + "name": "ann_arbor_extranodal_involvement", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "updated_before", + "defaultValue": null, "description": null, + "name": "updated_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "updated_after", + "defaultValue": null, "description": null, + "name": "ajcc_clinical_stage", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "order_by_asc", + "defaultValue": null, "description": null, + "name": "hiv_positive", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "order_by_desc", + "defaultValue": null, "description": null, + "name": "ann_arbor_b_symptoms", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "with_links", + "defaultValue": null, "description": null, + "name": "classification_of_tumor", "type": { "kind": "LIST", "name": null, @@ -10518,12 +10814,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_links_any", + "defaultValue": null, "description": null, + "name": "last_known_disease_status", "type": { "kind": "LIST", "name": null, @@ -10532,12 +10828,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "without_links", + "defaultValue": null, "description": null, + "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -10546,12 +10842,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to", + "defaultValue": null, "description": null, + "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, @@ -10560,68 +10856,68 @@ "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to_any", + "defaultValue": null, "description": null, + "name": "primary_diagnosis", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "without_path_to", + "defaultValue": null, "description": null, + "name": "tumor_stage", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "created_datetime", + "defaultValue": null, "description": null, + "name": "age_at_diagnosis", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "major_version", + "defaultValue": null, "description": null, + "name": "hpv_positive_type", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "minor_version", + "defaultValue": null, "description": null, + "name": "days_to_death", "type": { "kind": "LIST", "name": null, @@ -10630,12 +10926,36 @@ "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "name", + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, "description": null, + "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -10644,12 +10964,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "release_date", + "defaultValue": null, "description": null, + "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -10658,26 +10978,26 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "released", + "defaultValue": null, "description": null, + "name": "vascular_invasion_present", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "updated_datetime", + "defaultValue": null, "description": null, + "name": "new_event_anatomic_site", "type": { "kind": "LIST", "name": null, @@ -10686,63 +11006,50 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "not", + "defaultValue": null, "description": null, + "name": "state", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_data_release", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "data_release", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_data_releases_count", - "description": null, - "args": [ + } + }, { - "name": "id", + "defaultValue": null, "description": null, + "name": "order_by_desc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "submitter_id", + "defaultValue": null, "description": null, + "name": "days_to_recurrence", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } }, { - "name": "ids", + "defaultValue": null, "description": null, + "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -10751,186 +11058,214 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "quick_search", + "defaultValue": null, "description": null, + "name": "tumor_grade", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "first", + "defaultValue": null, "description": null, + "name": "figo_stage", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "offset", + "defaultValue": null, "description": null, + "name": "tissue_or_organ_of_origin", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "created_before", + "defaultValue": null, "description": null, + "name": "days_to_birth", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } }, { - "name": "created_after", + "defaultValue": null, "description": null, + "name": "offset", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - }, - "defaultValue": null + } }, { - "name": "updated_before", + "defaultValue": null, "description": null, + "name": "hpv_status", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "updated_after", + "defaultValue": null, "description": null, + "name": "prior_malignancy", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "order_by_asc", + "defaultValue": null, "description": null, + "name": "new_event_type", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "order_by_desc", + "defaultValue": null, "description": null, + "name": "quick_search", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "with_links", + "defaultValue": null, "description": null, + "name": "days_to_new_event", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_links_any", + "defaultValue": null, "description": null, + "name": "circumferential_resection_margin", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "without_links", + "defaultValue": null, "description": null, + "name": "ldh_normal_range_upper", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to", + "defaultValue": null, "description": null, + "name": "lymph_nodes_positive", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "Int", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to_any", + "defaultValue": null, "description": null, + "name": "ids", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "without_path_to", + "defaultValue": null, "description": null, + "name": "site_of_resection_or_biopsy", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "schema_version", + "defaultValue": null, "description": null, + "name": "ajcc_pathologic_t", "type": { "kind": "LIST", "name": null, @@ -10939,69 +11274,77 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "not", + "defaultValue": null, "description": null, + "name": "first", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_root", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "Int", + "ofType": null + } } ], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, + "deprecationReason": null, + "description": null, "isDeprecated": false, - "deprecationReason": null + "name": "diagnosis", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "diagnosis", + "ofType": null + } + } }, { - "name": "_transaction_logs_count", - "description": null, "args": [ { - "name": "id", + "defaultValue": null, "description": null, + "name": "year_of_diagnosis", "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } }, { - "name": "type", + "defaultValue": null, "description": null, + "name": "order_by_asc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "quick_search", + "defaultValue": null, "description": null, + "name": "method_of_diagnosis", "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "project_id", + "defaultValue": null, "description": null, + "name": "laterality", "type": { "kind": "LIST", "name": null, @@ -11010,52 +11353,68 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "project", + "defaultValue": null, "description": null, + "name": "ann_arbor_pathologic_stage", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "program", + "defaultValue": null, "description": null, + "name": "submitter_id", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "order_by_asc", + "defaultValue": null, "description": null, + "name": "vital_status", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "order_by_desc", + "defaultValue": null, "description": null, + "name": "morphology", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "related_cases", + "defaultValue": null, "description": null, + "name": "ann_arbor_clinical_stage", "type": { "kind": "LIST", "name": null, @@ -11064,149 +11423,214 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "first", + "defaultValue": null, "description": null, + "name": "created_before", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "last", + "defaultValue": null, "description": null, + "name": "days_to_last_known_disease_status", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } }, { - "name": "offset", + "defaultValue": null, "description": null, + "name": "perineural_invasion_present", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "entities", + "defaultValue": null, "description": null, + "name": "days_to_hiv_diagnosis", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "is_dry_run", + "defaultValue": null, "description": null, + "name": "ajcc_pathologic_m", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "closed", + "defaultValue": null, "description": null, + "name": "days_to_last_follow_up", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } }, { - "name": "committable", - "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", + "defaultValue": null, + "description": null, + "name": "prior_treatment", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "state", + "defaultValue": null, "description": null, + "name": "ajcc_clinical_t", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "committed_by", + "defaultValue": null, "description": null, + "name": "colon_polyps_history", "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_transaction_logs", - "description": null, - "args": [ + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, { - "name": "id", + "defaultValue": null, "description": null, + "name": "ajcc_pathologic_n", "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "type", + "defaultValue": null, "description": null, + "name": "ajcc_clinical_n", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "quick_search", + "defaultValue": null, + "description": null, + "name": "ajcc_clinical_m", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ldh_level_at_diagnosis", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, "description": null, + "name": "created_after", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, { + "defaultValue": null, + "description": null, "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, "description": null, + "name": "residual_disease", "type": { "kind": "LIST", "name": null, @@ -11215,52 +11639,158 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "project", + "defaultValue": null, "description": null, + "name": "updated_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "program", + "defaultValue": null, "description": null, + "name": "without_path_to", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } }, { - "name": "order_by_asc", + "defaultValue": null, "description": null, + "name": "ajcc_pathologic_stage", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "order_by_desc", + "defaultValue": null, + "description": null, + "name": "lymphatic_invasion_present", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "progression_or_recurrence", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_diagnosis", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "cause_of_death", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "burkitt_lymphoma_clinical_variant", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ann_arbor_extranodal_involvement", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, "description": null, + "name": "updated_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "related_cases", + "defaultValue": null, "description": null, + "name": "ajcc_clinical_stage", "type": { "kind": "LIST", "name": null, @@ -11269,42 +11799,54 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "first", + "defaultValue": null, "description": null, + "name": "hiv_positive", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "last", + "defaultValue": null, "description": null, + "name": "ann_arbor_b_symptoms", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "offset", + "defaultValue": null, "description": null, + "name": "classification_of_tumor", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "entities", + "defaultValue": null, "description": null, + "name": "last_known_disease_status", "type": { "kind": "LIST", "name": null, @@ -11313,99 +11855,134 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "is_dry_run", + "defaultValue": null, "description": null, + "name": "updated_datetime", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "closed", + "defaultValue": null, "description": null, + "name": "with_path_to_any", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } }, { - "name": "committable", - "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", + "defaultValue": null, + "description": null, + "name": "primary_diagnosis", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "state", + "defaultValue": null, "description": null, + "name": "tumor_stage", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "committed_by", + "defaultValue": null, "description": null, + "name": "age_at_diagnosis", "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TransactionLog", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_links", - "description": null, - "args": [ + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, { - "name": "id", + "defaultValue": null, "description": null, + "name": "hpv_positive_type", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "submitter_id", + "defaultValue": null, "description": null, + "name": "days_to_death", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "ids", + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, "description": null, + "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -11414,1912 +11991,1704 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "quick_search", + "defaultValue": null, "description": null, + "name": "created_datetime", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "first", + "defaultValue": null, "description": null, + "name": "vascular_invasion_present", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "10" + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "offset", + "defaultValue": null, "description": null, + "name": "new_event_anatomic_site", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "created_before", + "defaultValue": null, "description": null, + "name": "state", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "created_after", + "defaultValue": null, "description": null, + "name": "order_by_desc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "updated_before", + "defaultValue": null, "description": null, + "name": "days_to_recurrence", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } }, { - "name": "updated_after", + "defaultValue": null, "description": null, + "name": "with_links_any", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "order_by_asc", + "defaultValue": null, "description": null, + "name": "tumor_grade", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "order_by_desc", + "defaultValue": null, "description": null, + "name": "figo_stage", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "project_id", + "defaultValue": null, "description": null, + "name": "tissue_or_organ_of_origin", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "category", + "defaultValue": null, "description": null, + "name": "days_to_birth", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "major_version", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "minor_version", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "release_date", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "schema_version", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "administering_ic", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "availability_mechanism", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "availability_type", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_collected", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "institution", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "hpv_status", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "prior_malignancy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "new_event_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_new_event", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "circumferential_resection_margin", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ldh_normal_range_upper", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "lymph_nodes_positive", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "site_of_resection_or_biopsy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_pathologic_t", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } } - }, - "defaultValue": null - }, - { - "name": "intended_release_date", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "investigator", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "investigator_affiliation", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "investigator_name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "project_title", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "releasable", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "released", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "research_focus_area", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "research_program", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "support_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "support_source", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "year_awarded", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "doc_url", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "dbgap_accession_number", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "accepts_healthy_volunteers", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "actual_enrollment", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "arm", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "arm_description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "arm_name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "arm_type", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "brief_summary", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "brief_title", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "category", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "clinical_trial_website", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "collaborators", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "condition", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contact", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contributor", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "coverage", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "creator", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_availability_date", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_available", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_available_for_request", + ], + "deprecationReason": null, "description": null, + "isDeprecated": false, + "name": "_diagnosis_count", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null - }, - "defaultValue": null + } }, { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "eligibility_criteria", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "enrollment", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "fda_regulated_device_product", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "fda_regulated_drug_product", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first_posted_date", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "focus", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "has_data_monitoring_committee", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "intervention_type", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ipd_sharing_statement", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "language", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last_update_posted_date", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "location", + "args": [ + { + "defaultValue": null, + "description": null, + "name": "cigarettes_per_day", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "years_smoked", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "height", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "tobacco_smoking_status", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "pack_years_smoked", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "weight", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "tobacco_smoking_onset_year", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "alcohol_history", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "bmi", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_exposure", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "alcohol_intensity", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "tobacco_smoking_quit_year", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, "description": null, + "isDeprecated": false, + "name": "exposure", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "exposure", "ofType": null } - }, - "defaultValue": null - }, - { - "name": "locations_removed", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "nct_number", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "original_estimated_enrollment", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "primary_completion_date", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "principle_investigator", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + } }, { - "name": "prs_account", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "publications", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "publisher", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "recruitment_status", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "responsible_party", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rights", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "secondary_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "source", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "study_completion_date", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "study_design_allocation", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "study_design_intervention_model", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "study_design_masking", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "study_design_primary_purpose", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "study_phase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "study_start_date", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subject", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "submitted_date", + "args": [ + { + "defaultValue": null, + "description": null, + "name": "cigarettes_per_day", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "years_smoked", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "height", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "tobacco_smoking_status", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "pack_years_smoked", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "weight", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "tobacco_smoking_onset_year", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "alcohol_history", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "bmi", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_exposure", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "alcohol_intensity", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "tobacco_smoking_quit_year", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, "description": null, + "isDeprecated": false, + "name": "_exposure_count", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - }, - "defaultValue": null + } }, { - "name": "title", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "us_product", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "verification_date", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_datetime", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_category", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_format", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_type", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "error_type", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "file_name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "file_size", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "file_state", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "md5sum", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "object_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "project_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "submitter_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_datetime", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "not", + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_case", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "disease_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "primary_site", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "deprecationReason": null, "description": null, + "isDeprecated": false, + "name": "case", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_clinical_trial_file", + "kind": "OBJECT", + "name": "case", "ofType": null } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_clinical_trial_file", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "created_datetime", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_category", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_format", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_type", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "error_type", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "file_name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "file_size", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "file_state", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "md5sum", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "object_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + } }, { - "name": "project_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "submitter_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_datetime", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_data_release", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "created_datetime", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "major_version", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "minor_version", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "release_date", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "released", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_datetime", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_root", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "schema_version", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "project", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "submitter_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "project_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_datetime", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_datetime", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "administering_ic", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "availability_mechanism", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "availability_type", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "code", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data_description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "date_collected", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dbgap_accession_number", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "institution", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "intended_release_date", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "investigator", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "investigator_affiliation", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "investigator_name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "location", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "project_title", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "releasable", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "released", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "research_focus_area", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "research_program", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "state", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "support_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "support_source", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "year_awarded", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "programs", - "description": null, "args": [ { - "name": "id", + "defaultValue": null, "description": null, + "name": "order_by_asc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "submitter_id", + "defaultValue": null, "description": null, + "name": "updated_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "ids", + "defaultValue": null, "description": null, + "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "quick_search", + "defaultValue": null, "description": null, + "name": "submitter_id", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "first", + "defaultValue": null, "description": null, + "name": "with_links", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "offset", + "defaultValue": null, "description": null, + "name": "offset", "type": { "kind": "SCALAR", "name": "Int", "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + } }, { - "name": "created_after", + "defaultValue": null, "description": null, + "name": "not", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_case", + "ofType": null + } + } }, { - "name": "updated_before", + "defaultValue": null, "description": null, + "name": "created_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "updated_after", + "defaultValue": null, "description": null, + "name": "id", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "order_by_asc", + "defaultValue": null, "description": null, + "name": "with_path_to", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } }, { - "name": "order_by_desc", + "defaultValue": null, "description": null, + "name": "quick_search", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "with_links", + "defaultValue": null, "description": null, + "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -13328,12 +13697,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_links_any", + "defaultValue": null, "description": null, + "name": "disease_type", "type": { "kind": "LIST", "name": null, @@ -13342,12 +13711,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "without_links", + "defaultValue": null, "description": null, + "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -13356,54 +13725,40 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to", + "defaultValue": null, "description": null, + "name": "updated_datetime", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null - }, - { - "name": "with_path_to_any", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - }, - "defaultValue": null + } }, { - "name": "without_path_to", + "defaultValue": null, "description": null, + "name": "ids", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "dbgap_accession_number", + "defaultValue": null, "description": null, + "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -13412,12 +13767,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "name", + "defaultValue": null, "description": null, + "name": "state", "type": { "kind": "LIST", "name": null, @@ -13426,67 +13781,22 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "not", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_program", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "program", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "core_metadata_collections", - "description": null, - "args": [ - { - "name": "id", + "defaultValue": null, "description": null, + "name": "updated_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null - }, - { - "name": "submitter_id", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + } }, { - "name": "ids", + "defaultValue": null, "description": null, + "name": "primary_site", "type": { "kind": "LIST", "name": null, @@ -13495,102 +13805,93 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "quick_search", + "defaultValue": null, "description": null, + "name": "created_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + } }, { - "name": "offset", + "defaultValue": null, "description": null, + "name": "with_path_to_any", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } }, { - "name": "created_before", + "defaultValue": null, "description": null, + "name": "order_by_desc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "created_after", + "defaultValue": null, "description": null, + "name": "first", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - }, - "defaultValue": null + } }, { - "name": "updated_before", + "defaultValue": null, "description": null, + "name": "with_links_any", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_case_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ { - "name": "updated_after", + "defaultValue": null, "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { "name": "order_by_asc", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by_desc", - "description": null, "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "with_links", + "defaultValue": null, "description": null, + "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -13599,26 +13900,26 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_links_any", + "defaultValue": null, "description": null, + "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "without_links", + "defaultValue": null, "description": null, + "name": "data_format", "type": { "kind": "LIST", "name": null, @@ -13627,40 +13928,46 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to", + "defaultValue": null, "description": null, + "name": "file_size", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "Int", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to_any", + "defaultValue": null, "description": null, + "name": "created_before", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "without_path_to", + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "with_path_to", "type": { "kind": "LIST", "name": null, @@ -13669,12 +13976,12 @@ "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "accepts_healthy_volunteers", + "defaultValue": null, "description": null, + "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -13683,12 +13990,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "actual_enrollment", + "defaultValue": null, "description": null, + "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -13697,12 +14004,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "arm", + "defaultValue": null, "description": null, + "name": "error_type", "type": { "kind": "LIST", "name": null, @@ -13711,12 +14018,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "arm_description", + "defaultValue": null, "description": null, + "name": "object_id", "type": { "kind": "LIST", "name": null, @@ -13725,12 +14032,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "arm_name", + "defaultValue": null, "description": null, + "name": "state", "type": { "kind": "LIST", "name": null, @@ -13739,26 +14046,22 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "arm_type", + "defaultValue": null, "description": null, + "name": "created_after", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "brief_summary", + "defaultValue": null, "description": null, + "name": "file_name", "type": { "kind": "LIST", "name": null, @@ -13767,26 +14070,22 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "brief_title", + "defaultValue": null, "description": null, + "name": "order_by_desc", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "category", + "defaultValue": null, "description": null, + "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -13795,12 +14094,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "clinical_trial_website", + "defaultValue": null, "description": null, + "name": "file_state", "type": { "kind": "LIST", "name": null, @@ -13809,12 +14108,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "collaborators", + "defaultValue": null, "description": null, + "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -13823,12 +14122,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "condition", + "defaultValue": null, "description": null, + "name": "data_type", "type": { "kind": "LIST", "name": null, @@ -13837,40 +14136,36 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "contact", + "defaultValue": null, "description": null, + "name": "updated_before", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "contributor", + "defaultValue": null, "description": null, + "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "coverage", + "defaultValue": null, "description": null, + "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -13879,40 +14174,36 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "created_datetime", + "defaultValue": null, "description": null, + "name": "offset", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, { - "name": "creator", + "defaultValue": null, "description": null, + "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_submitted_aligned_reads", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_availability_date", + "defaultValue": null, "description": null, + "name": "submitter_id", "type": { "kind": "LIST", "name": null, @@ -13921,12 +14212,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_available", + "defaultValue": null, "description": null, + "name": "state_comment", "type": { "kind": "LIST", "name": null, @@ -13935,26 +14226,22 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_available_for_request", + "defaultValue": null, "description": null, + "name": "quick_search", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "data_category", + "defaultValue": null, "description": null, + "name": "md5sum", "type": { "kind": "LIST", "name": null, @@ -13963,12 +14250,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_format", + "defaultValue": null, "description": null, + "name": "ids", "type": { "kind": "LIST", "name": null, @@ -13977,26 +14264,22 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_type", + "defaultValue": null, "description": null, + "name": "updated_after", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "description", + "defaultValue": null, "description": null, + "name": "data_category", "type": { "kind": "LIST", "name": null, @@ -14005,12 +14288,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "eligibility_criteria", + "defaultValue": null, "description": null, + "name": "experimental_strategy", "type": { "kind": "LIST", "name": null, @@ -14019,26 +14302,49 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "enrollment", + "defaultValue": null, "description": null, + "name": "first", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "submitted_aligned_reads", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "submitted_aligned_reads", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "fda_regulated_device_product", + "defaultValue": null, "description": null, + "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -14047,26 +14353,26 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "fda_regulated_drug_product", + "defaultValue": null, "description": null, + "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "first_posted_date", + "defaultValue": null, "description": null, + "name": "data_format", "type": { "kind": "LIST", "name": null, @@ -14075,68 +14381,60 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "focus", + "defaultValue": null, "description": null, + "name": "file_size", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "has_data_monitoring_committee", + "defaultValue": null, "description": null, + "name": "created_before", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "intervention_type", + "defaultValue": null, "description": null, + "name": "id", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "ipd_sharing_statement", + "defaultValue": null, "description": null, + "name": "with_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "language", + "defaultValue": null, "description": null, + "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -14145,12 +14443,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "last_update_posted_date", + "defaultValue": null, "description": null, + "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -14159,12 +14457,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "location", + "defaultValue": null, "description": null, + "name": "error_type", "type": { "kind": "LIST", "name": null, @@ -14173,12 +14471,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "locations_removed", + "defaultValue": null, "description": null, + "name": "object_id", "type": { "kind": "LIST", "name": null, @@ -14187,12 +14485,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "nct_number", + "defaultValue": null, "description": null, + "name": "state", "type": { "kind": "LIST", "name": null, @@ -14201,26 +14499,22 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "original_estimated_enrollment", + "defaultValue": null, "description": null, + "name": "created_after", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "primary_completion_date", + "defaultValue": null, "description": null, + "name": "file_name", "type": { "kind": "LIST", "name": null, @@ -14229,26 +14523,22 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "principle_investigator", + "defaultValue": null, "description": null, + "name": "order_by_desc", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "project_id", + "defaultValue": null, "description": null, + "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -14257,12 +14547,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "prs_account", + "defaultValue": null, "description": null, + "name": "file_state", "type": { "kind": "LIST", "name": null, @@ -14271,12 +14561,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "publications", + "defaultValue": null, "description": null, + "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -14285,12 +14575,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "publisher", + "defaultValue": null, "description": null, + "name": "data_type", "type": { "kind": "LIST", "name": null, @@ -14299,40 +14589,36 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "recruitment_status", + "defaultValue": null, "description": null, + "name": "updated_before", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "responsible_party", + "defaultValue": null, "description": null, + "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "rights", + "defaultValue": null, "description": null, + "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -14341,40 +14627,36 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "secondary_id", + "defaultValue": null, "description": null, + "name": "offset", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, { - "name": "source", + "defaultValue": null, "description": null, + "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_submitted_aligned_reads", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "state", + "defaultValue": null, "description": null, + "name": "submitter_id", "type": { "kind": "LIST", "name": null, @@ -14383,12 +14665,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "study_completion_date", + "defaultValue": null, "description": null, + "name": "state_comment", "type": { "kind": "LIST", "name": null, @@ -14397,26 +14679,22 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "study_design_allocation", + "defaultValue": null, "description": null, + "name": "quick_search", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "study_design_intervention_model", + "defaultValue": null, "description": null, + "name": "md5sum", "type": { "kind": "LIST", "name": null, @@ -14425,12 +14703,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "study_design_masking", + "defaultValue": null, "description": null, + "name": "ids", "type": { "kind": "LIST", "name": null, @@ -14439,26 +14717,22 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "study_design_primary_purpose", + "defaultValue": null, "description": null, + "name": "updated_after", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "study_phase", + "defaultValue": null, "description": null, + "name": "data_category", "type": { "kind": "LIST", "name": null, @@ -14467,12 +14741,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "study_start_date", + "defaultValue": null, "description": null, + "name": "experimental_strategy", "type": { "kind": "LIST", "name": null, @@ -14481,26 +14755,35 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "subject", + "defaultValue": null, "description": null, + "name": "first", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_submitted_aligned_reads_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ { - "name": "submitted_date", + "defaultValue": null, "description": null, + "name": "code", "type": { "kind": "LIST", "name": null, @@ -14509,54 +14792,50 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "title", + "defaultValue": null, "description": null, + "name": "order_by_asc", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "updated_datetime", + "defaultValue": null, "description": null, + "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "us_product", + "defaultValue": null, "description": null, + "name": "releasable", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "verification_date", + "defaultValue": null, "description": null, + "name": "availability_mechanism", "type": { "kind": "LIST", "name": null, @@ -14565,167 +14844,136 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "not", + "defaultValue": null, "description": null, + "name": "dbgap_accession_number", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_core_metadata_collection", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "core_metadata_collection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_programs_count", - "description": null, - "args": [ + } + }, { - "name": "id", + "defaultValue": null, "description": null, + "name": "created_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "submitter_id", + "defaultValue": null, "description": null, + "name": "id", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "ids", + "defaultValue": null, "description": null, + "name": "with_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null - }, - { - "name": "quick_search", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + } }, { - "name": "offset", + "defaultValue": null, "description": null, + "name": "without_links", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "created_before", + "defaultValue": null, "description": null, + "name": "investigator_affiliation", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "created_after", + "defaultValue": null, "description": null, + "name": "support_source", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "updated_before", + "defaultValue": null, "description": null, + "name": "state", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "updated_after", + "defaultValue": null, "description": null, + "name": "created_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "order_by_asc", + "defaultValue": null, "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { "name": "order_by_desc", - "description": null, "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "with_links", + "defaultValue": null, "description": null, + "name": "investigator_name", "type": { "kind": "LIST", "name": null, @@ -14734,12 +14982,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_links_any", + "defaultValue": null, "description": null, + "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -14748,12 +14996,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "without_links", + "defaultValue": null, "description": null, + "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -14762,40 +15010,36 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to", + "defaultValue": null, "description": null, + "name": "date_collected", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to_any", + "defaultValue": null, "description": null, + "name": "updated_before", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "without_path_to", + "defaultValue": null, "description": null, + "name": "without_path_to", "type": { "kind": "LIST", "name": null, @@ -14804,12 +15048,12 @@ "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "administering_ic", + "defaultValue": null, "description": null, + "name": "intended_release_date", "type": { "kind": "LIST", "name": null, @@ -14818,12 +15062,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "availability_mechanism", + "defaultValue": null, "description": null, + "name": "support_id", "type": { "kind": "LIST", "name": null, @@ -14832,12 +15076,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "availability_type", + "defaultValue": null, "description": null, + "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -14846,26 +15090,26 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "code", + "defaultValue": null, "description": null, + "name": "released", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_description", + "defaultValue": null, "description": null, + "name": "availability_type", "type": { "kind": "LIST", "name": null, @@ -14874,54 +15118,46 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "date_collected", + "defaultValue": null, "description": null, + "name": "offset", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, { - "name": "dbgap_accession_number", + "defaultValue": null, "description": null, + "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_project", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "institution", + "defaultValue": null, "description": null, + "name": "quick_search", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "intended_release_date", + "defaultValue": null, "description": null, + "name": "name", "type": { "kind": "LIST", "name": null, @@ -14930,12 +15166,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "investigator", + "defaultValue": null, "description": null, + "name": "ids", "type": { "kind": "LIST", "name": null, @@ -14944,40 +15180,49 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "investigator_affiliation", + "defaultValue": null, "description": null, + "name": "updated_after", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "investigator_name", + "defaultValue": null, "description": null, + "name": "first", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "project", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "project", + "ofType": null + } + } + }, + { + "args": [ { - "name": "location", + "defaultValue": null, "description": null, + "name": "code", "type": { "kind": "LIST", "name": null, @@ -14986,40 +15231,36 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "name", + "defaultValue": null, "description": null, + "name": "order_by_asc", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "project_title", + "defaultValue": null, "description": null, + "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "releasable", + "defaultValue": null, "description": null, + "name": "releasable", "type": { "kind": "LIST", "name": null, @@ -15028,26 +15269,26 @@ "name": "Boolean", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "released", + "defaultValue": null, "description": null, + "name": "availability_mechanism", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "research_focus_area", + "defaultValue": null, "description": null, + "name": "dbgap_accession_number", "type": { "kind": "LIST", "name": null, @@ -15056,54 +15297,46 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "research_program", + "defaultValue": null, "description": null, + "name": "created_before", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "state", + "defaultValue": null, "description": null, + "name": "id", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "support_id", + "defaultValue": null, "description": null, + "name": "with_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "support_source", + "defaultValue": null, "description": null, + "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -15112,26 +15345,26 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "year_awarded", + "defaultValue": null, "description": null, + "name": "investigator_affiliation", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "project_id", + "defaultValue": null, "description": null, + "name": "support_source", "type": { "kind": "LIST", "name": null, @@ -15140,59 +15373,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null - }, - { - "name": "not", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_project", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_core_metadata_collections_count", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "submitter_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + } }, { - "name": "ids", + "defaultValue": null, "description": null, + "name": "state", "type": { "kind": "LIST", "name": null, @@ -15201,102 +15387,32 @@ "name": "String", "ofType": null } - }, - "defaultValue": null - }, - { - "name": "quick_search", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + } }, { - "name": "created_before", + "defaultValue": null, "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { "name": "created_after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_after", - "description": null, "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "order_by_asc", + "defaultValue": null, "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { "name": "order_by_desc", - "description": null, "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "with_links", + "defaultValue": null, "description": null, + "name": "investigator_name", "type": { "kind": "LIST", "name": null, @@ -15305,12 +15421,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_links_any", + "defaultValue": null, "description": null, + "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -15319,12 +15435,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "without_links", + "defaultValue": null, "description": null, + "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -15333,40 +15449,36 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to", + "defaultValue": null, "description": null, + "name": "date_collected", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to_any", + "defaultValue": null, "description": null, + "name": "updated_before", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "without_path_to", + "defaultValue": null, "description": null, + "name": "without_path_to", "type": { "kind": "LIST", "name": null, @@ -15375,12 +15487,12 @@ "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "administering_ic", + "defaultValue": null, "description": null, + "name": "intended_release_date", "type": { "kind": "LIST", "name": null, @@ -15389,12 +15501,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "availability_mechanism", + "defaultValue": null, "description": null, + "name": "support_id", "type": { "kind": "LIST", "name": null, @@ -15403,12 +15515,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "availability_type", + "defaultValue": null, "description": null, + "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -15417,26 +15529,26 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "code", + "defaultValue": null, "description": null, + "name": "released", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_description", + "defaultValue": null, "description": null, + "name": "availability_type", "type": { "kind": "LIST", "name": null, @@ -15445,26 +15557,46 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "date_collected", + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_project", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "dbgap_accession_number", + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "name", "type": { "kind": "LIST", "name": null, @@ -15473,12 +15605,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "institution", + "defaultValue": null, "description": null, + "name": "ids", "type": { "kind": "LIST", "name": null, @@ -15487,12 +15619,45 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "intended_release_date", + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_project_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, "description": null, + "name": "race", "type": { "kind": "LIST", "name": null, @@ -15501,26 +15666,46 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "investigator", + "defaultValue": null, "description": null, + "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "investigator_affiliation", + "defaultValue": null, "description": null, + "name": "submitter_id", "type": { "kind": "LIST", "name": null, @@ -15529,12 +15714,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "investigator_name", + "defaultValue": null, "description": null, + "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -15543,82 +15728,122 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "location", + "defaultValue": null, "description": null, + "name": "year_of_birth", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "name", + "defaultValue": null, "description": null, + "name": "year_of_death", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, { - "name": "project_title", + "defaultValue": null, "description": null, + "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_demographic", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "releasable", + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "with_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "released", + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "without_links", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "research_focus_area", + "defaultValue": null, "description": null, + "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -15627,12 +15852,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "research_program", + "defaultValue": null, "description": null, + "name": "gender", "type": { "kind": "LIST", "name": null, @@ -15641,12 +15866,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "state", + "defaultValue": null, "description": null, + "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -15655,12 +15880,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "support_id", + "defaultValue": null, "description": null, + "name": "ids", "type": { "kind": "LIST", "name": null, @@ -15669,12 +15894,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "support_source", + "defaultValue": null, "description": null, + "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -15683,26 +15908,36 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "year_awarded", + "defaultValue": null, "description": null, + "name": "state", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "project_id", + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "ethnicity", "type": { "kind": "LIST", "name": null, @@ -15711,69 +15946,87 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "not", + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_project", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null - } - ], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_transaction_logs_count", - "description": null, - "args": [ + } + }, { - "name": "id", + "defaultValue": null, "description": null, + "name": "order_by_desc", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "type", + "defaultValue": null, "description": null, + "name": "first", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - }, - "defaultValue": null + } }, { - "name": "quick_search", + "defaultValue": null, "description": null, + "name": "with_links_any", "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "demographic", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "demographic", + "ofType": null + } + } + }, + { + "args": [ { - "name": "project_id", + "defaultValue": null, "description": null, + "name": "race", "type": { "kind": "LIST", "name": null, @@ -15782,52 +16035,60 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "project", + "defaultValue": null, "description": null, + "name": "order_by_asc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "program", + "defaultValue": null, "description": null, + "name": "updated_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "order_by_asc", + "defaultValue": null, "description": null, + "name": "without_path_to", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } }, { - "name": "order_by_desc", + "defaultValue": null, "description": null, + "name": "submitter_id", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "related_cases", + "defaultValue": null, "description": null, + "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -15836,149 +16097,150 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "first", + "defaultValue": null, "description": null, + "name": "year_of_birth", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } }, { - "name": "last", + "defaultValue": null, "description": null, + "name": "year_of_death", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } }, { - "name": "offset", + "defaultValue": null, "description": null, + "name": "offset", "type": { "kind": "SCALAR", "name": "Int", "ofType": null - }, - "defaultValue": null + } }, { - "name": "entities", + "defaultValue": null, "description": null, + "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_demographic", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "is_dry_run", + "defaultValue": null, "description": null, + "name": "created_before", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "closed", + "defaultValue": null, "description": null, + "name": "id", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "committable", - "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", + "defaultValue": null, + "description": null, + "name": "with_path_to", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } }, { - "name": "state", + "defaultValue": null, "description": null, + "name": "quick_search", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "committed_by", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_transaction_logs", - "description": null, - "args": [ - { - "name": "id", + "defaultValue": null, "description": null, + "name": "without_links", "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "type", + "defaultValue": null, "description": null, + "name": "created_datetime", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "quick_search", + "defaultValue": null, "description": null, + "name": "gender", "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "project_id", + "defaultValue": null, "description": null, + "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -15987,52 +16249,64 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "project", + "defaultValue": null, "description": null, + "name": "ids", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "program", + "defaultValue": null, "description": null, + "name": "project_id", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "order_by_asc", + "defaultValue": null, "description": null, + "name": "state", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "order_by_desc", + "defaultValue": null, "description": null, + "name": "updated_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "related_cases", + "defaultValue": null, "description": null, + "name": "ethnicity", "type": { "kind": "LIST", "name": null, @@ -16041,42 +16315,56 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "first", + "defaultValue": null, "description": null, + "name": "created_after", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "last", + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, "description": null, + "name": "order_by_desc", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "offset", + "defaultValue": null, "description": null, + "name": "first", "type": { "kind": "SCALAR", "name": "Int", "ofType": null - }, - "defaultValue": null + } }, { - "name": "entities", + "defaultValue": null, "description": null, + "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -16085,99 +16373,87 @@ "name": "String", "ofType": null } - }, - "defaultValue": null - }, + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_demographic_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ { - "name": "is_dry_run", + "defaultValue": null, "description": null, + "name": "order_by_asc", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "closed", + "defaultValue": null, "description": null, + "name": "updated_before", "type": { "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "committable", - "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", - "type": { - "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "state", + "defaultValue": null, "description": null, + "name": "without_path_to", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } }, { - "name": "committed_by", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TransactionLog", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_links", - "description": null, - "args": [ - { - "name": "id", + "defaultValue": null, "description": null, + "name": "analyte_type", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "submitter_id", + "defaultValue": null, "description": null, + "name": "submitter_id", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "ids", + "defaultValue": null, "description": null, + "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -16186,272 +16462,164 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "quick_search", + "defaultValue": null, "description": null, + "name": "state", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "first", + "defaultValue": null, "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "10" - }, - { "name": "offset", - "description": null, "type": { "kind": "SCALAR", "name": "Int", "ofType": null - }, - "defaultValue": null + } }, { - "name": "created_before", + "defaultValue": null, "description": null, + "name": "not", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_aliquot", + "ofType": null + } + } }, { - "name": "created_after", + "defaultValue": null, "description": null, + "name": "concentration", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } }, { - "name": "updated_before", + "defaultValue": null, "description": null, + "name": "created_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "updated_after", + "defaultValue": null, "description": null, + "name": "id", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "order_by_asc", + "defaultValue": null, "description": null, + "name": "with_path_to", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } }, { - "name": "order_by_desc", + "defaultValue": null, "description": null, + "name": "quick_search", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "project_id", + "defaultValue": null, "description": null, + "name": "without_links", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "category", + "defaultValue": null, "description": null, + "name": "aliquot_volume", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "program", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "submitter_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "project_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_datetime", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_datetime", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dbgap_accession_number", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "projects", - "description": null, - "args": [ + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, { - "name": "id", + "defaultValue": null, "description": null, + "name": "aliquot_quantity", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } }, { - "name": "submitter_id", + "defaultValue": null, "description": null, + "name": "created_datetime", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "ids", + "defaultValue": null, "description": null, + "name": "analyte_type_id", "type": { "kind": "LIST", "name": null, @@ -16460,102 +16628,122 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "quick_search", + "defaultValue": null, "description": null, + "name": "updated_datetime", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "first", + "defaultValue": null, "description": null, + "name": "ids", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "offset", + "defaultValue": null, "description": null, + "name": "project_id", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "created_before", + "defaultValue": null, "description": null, + "name": "amount", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } }, { - "name": "created_after", + "defaultValue": null, "description": null, + "name": "updated_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "updated_before", + "defaultValue": null, "description": null, + "name": "created_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "updated_after", + "defaultValue": null, "description": null, + "name": "with_path_to_any", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } }, { - "name": "order_by_asc", + "defaultValue": null, "description": null, + "name": "order_by_desc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "order_by_desc", + "defaultValue": null, "description": null, + "name": "first", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - }, - "defaultValue": null + } }, { - "name": "with_links", + "defaultValue": null, "description": null, + "name": "source_center", "type": { "kind": "LIST", "name": null, @@ -16564,12 +16752,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_links_any", + "defaultValue": null, "description": null, + "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -16578,40 +16766,49 @@ "name": "String", "ofType": null } - }, - "defaultValue": null - }, + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "aliquot", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "aliquot", + "ofType": null + } + } + }, + { + "args": [ { - "name": "without_links", + "defaultValue": null, "description": null, + "name": "order_by_asc", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "with_path_to", + "defaultValue": null, "description": null, + "name": "updated_before", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "with_path_to_any", + "defaultValue": null, "description": null, + "name": "without_path_to", "type": { "kind": "LIST", "name": null, @@ -16620,26 +16817,26 @@ "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "without_path_to", + "defaultValue": null, "description": null, + "name": "analyte_type", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "administering_ic", + "defaultValue": null, "description": null, + "name": "submitter_id", "type": { "kind": "LIST", "name": null, @@ -16648,12 +16845,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "availability_mechanism", + "defaultValue": null, "description": null, + "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -16662,12 +16859,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "availability_type", + "defaultValue": null, "description": null, + "name": "state", "type": { "kind": "LIST", "name": null, @@ -16676,54 +16873,94 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "code", + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_aliquot", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_description", + "defaultValue": null, "description": null, + "name": "concentration", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "date_collected", + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "with_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "dbgap_accession_number", + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -16732,40 +16969,40 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "institution", + "defaultValue": null, "description": null, + "name": "aliquot_volume", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "intended_release_date", + "defaultValue": null, "description": null, + "name": "aliquot_quantity", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "investigator", + "defaultValue": null, "description": null, + "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -16774,12 +17011,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "investigator_affiliation", + "defaultValue": null, "description": null, + "name": "analyte_type_id", "type": { "kind": "LIST", "name": null, @@ -16788,12 +17025,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "investigator_name", + "defaultValue": null, "description": null, + "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -16802,12 +17039,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "location", + "defaultValue": null, "description": null, + "name": "ids", "type": { "kind": "LIST", "name": null, @@ -16816,12 +17053,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "name", + "defaultValue": null, "description": null, + "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -16830,68 +17067,80 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "project_title", + "defaultValue": null, "description": null, + "name": "amount", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "releasable", + "defaultValue": null, "description": null, + "name": "updated_after", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "released", + "defaultValue": null, "description": null, + "name": "created_after", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "research_focus_area", + "defaultValue": null, "description": null, + "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "research_program", + "defaultValue": null, "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "source_center", "type": { "kind": "LIST", "name": null, @@ -16900,12 +17149,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "state", + "defaultValue": null, "description": null, + "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -16914,12 +17163,25 @@ "name": "String", "ofType": null } - }, - "defaultValue": null - }, + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_aliquot_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ { - "name": "support_id", + "defaultValue": null, "description": null, + "name": "error_type", "type": { "kind": "LIST", "name": null, @@ -16928,12 +17190,22 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "support_source", + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -16942,26 +17214,26 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "year_awarded", + "defaultValue": null, "description": null, + "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "project_id", + "defaultValue": null, "description": null, + "name": "data_format", "type": { "kind": "LIST", "name": null, @@ -16970,167 +17242,164 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "not", + "defaultValue": null, "description": null, + "name": "file_size", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_project", + "kind": "SCALAR", + "name": "Int", "ofType": null } - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "project", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_projects_count", - "description": null, - "args": [ + } + }, { - "name": "id", + "defaultValue": null, "description": null, + "name": "created_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "submitter_id", + "defaultValue": null, "description": null, + "name": "id", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "ids", + "defaultValue": null, "description": null, + "name": "with_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "quick_search", + "defaultValue": null, "description": null, + "name": "without_links", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "first", + "defaultValue": null, "description": null, + "name": "created_datetime", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "offset", + "defaultValue": null, "description": null, + "name": "assay_instrument_model", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "created_before", + "defaultValue": null, "description": null, + "name": "object_id", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "created_after", + "defaultValue": null, "description": null, + "name": "state", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "updated_before", + "defaultValue": null, "description": null, + "name": "created_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "updated_after", + "defaultValue": null, "description": null, + "name": "file_name", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "order_by_asc", + "defaultValue": null, "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { "name": "order_by_desc", - "description": null, "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "with_links", + "defaultValue": null, "description": null, + "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -17139,12 +17408,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_links_any", + "defaultValue": null, "description": null, + "name": "file_state", "type": { "kind": "LIST", "name": null, @@ -17153,12 +17422,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "without_links", + "defaultValue": null, "description": null, + "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -17167,40 +17436,50 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to", + "defaultValue": null, "description": null, + "name": "assay_method", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to_any", + "defaultValue": null, "description": null, + "name": "data_type", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "without_path_to", + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "without_path_to", "type": { "kind": "LIST", "name": null, @@ -17209,12 +17488,12 @@ "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "dbgap_accession_number", + "defaultValue": null, "description": null, + "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -17223,83 +17502,88 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "name", + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_submitted_methylation", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "not", + "defaultValue": null, "description": null, + "name": "submitter_id", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_program", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null - } - ], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_transaction_logs_count", - "description": null, - "args": [ + } + }, { - "name": "id", + "defaultValue": null, "description": null, + "name": "state_comment", "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "type", + "defaultValue": null, "description": null, + "name": "quick_search", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "quick_search", + "defaultValue": null, "description": null, + "name": "md5sum", "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "project_id", + "defaultValue": null, "description": null, + "name": "ids", "type": { "kind": "LIST", "name": null, @@ -17308,52 +17592,77 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "project", + "defaultValue": null, "description": null, + "name": "updated_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "program", + "defaultValue": null, "description": null, + "name": "data_category", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "order_by_asc", + "defaultValue": null, "description": null, + "name": "assay_instrument", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "order_by_desc", + "defaultValue": null, "description": null, + "name": "first", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - }, - "defaultValue": null - }, + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "submitted_methylation", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "submitted_methylation", + "ofType": null + } + } + }, + { + "args": [ { - "name": "related_cases", + "defaultValue": null, "description": null, + "name": "error_type", "type": { "kind": "LIST", "name": null, @@ -17362,42 +17671,50 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "first", + "defaultValue": null, "description": null, + "name": "order_by_asc", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "last", + "defaultValue": null, "description": null, + "name": "updated_datetime", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "offset", + "defaultValue": null, "description": null, + "name": "with_path_to_any", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } }, { - "name": "entities", + "defaultValue": null, "description": null, + "name": "data_format", "type": { "kind": "LIST", "name": null, @@ -17406,105 +17723,116 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "is_dry_run", + "defaultValue": null, "description": null, + "name": "file_size", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } }, { - "name": "closed", + "defaultValue": null, "description": null, + "name": "created_before", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "committable", - "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", + "defaultValue": null, + "description": null, + "name": "id", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "state", + "defaultValue": null, "description": null, + "name": "with_path_to", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } }, { - "name": "committed_by", + "defaultValue": null, "description": null, + "name": "without_links", "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_transaction_logs", - "description": null, - "args": [ + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, { - "name": "id", + "defaultValue": null, "description": null, + "name": "created_datetime", "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "type", + "defaultValue": null, "description": null, + "name": "assay_instrument_model", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "quick_search", + "defaultValue": null, "description": null, + "name": "object_id", "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "project_id", + "defaultValue": null, "description": null, + "name": "state", "type": { "kind": "LIST", "name": null, @@ -17513,52 +17841,140 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "project", + "defaultValue": null, "description": null, + "name": "created_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "program", + "defaultValue": null, "description": null, + "name": "file_name", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "order_by_asc", + "defaultValue": null, "description": null, + "name": "order_by_desc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "order_by_desc", + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "assay_method", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, "description": null, + "name": "updated_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "related_cases", + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, "description": null, + "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -17567,42 +17983,50 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "first", + "defaultValue": null, "description": null, + "name": "offset", "type": { "kind": "SCALAR", "name": "Int", "ofType": null - }, - "defaultValue": null + } }, { - "name": "last", + "defaultValue": null, "description": null, + "name": "not", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_submitted_methylation", + "ofType": null + } + } }, { - "name": "offset", + "defaultValue": null, "description": null, + "name": "submitter_id", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "entities", + "defaultValue": null, "description": null, + "name": "state_comment", "type": { "kind": "LIST", "name": null, @@ -17611,99 +18035,135 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "is_dry_run", + "defaultValue": null, "description": null, + "name": "quick_search", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "closed", + "defaultValue": null, "description": null, + "name": "md5sum", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "committable", - "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", + "defaultValue": null, + "description": null, + "name": "ids", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "state", + "defaultValue": null, "description": null, + "name": "updated_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "committed_by", + "defaultValue": null, + "description": null, + "name": "data_category", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "assay_instrument", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, "description": null, + "name": "first", "type": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null - }, - "defaultValue": null + } } ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TransactionLog", - "ofType": null - } - }, + "deprecationReason": null, + "description": null, "isDeprecated": false, - "deprecationReason": null + "name": "_submitted_methylation_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, { - "name": "_links", - "description": null, "args": [ { - "name": "id", + "defaultValue": null, "description": null, + "name": "her2_erbb2_result_ihc", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "submitter_id", + "defaultValue": null, "description": null, + "name": "order_by_asc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "ids", + "defaultValue": null, "description": null, + "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -17712,1270 +18172,563 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "quick_search", + "defaultValue": null, "description": null, + "name": "with_path_to_any", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } }, { - "name": "first", + "defaultValue": null, "description": null, + "name": "ldh_level_at_diagnosis", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "10" + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } }, { - "name": "offset", + "defaultValue": null, "description": null, + "name": "submitter_id", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "created_before", + "defaultValue": null, "description": null, + "name": "biomarker_result", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "created_after", + "defaultValue": null, "description": null, + "name": "fev1_fvc_pre_bronch_percent", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } }, { - "name": "updated_before", + "defaultValue": null, + "description": null, + "name": "fev1_ref_post_bronch_percent", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, "description": null, + "name": "created_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "updated_after", + "defaultValue": null, "description": null, + "name": "id", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "order_by_asc", + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "dlco_ref_predictive_percent", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "her2_erbb2_percent_positive_ihc", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "biomarker_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "fev1_fvc_post_bronch_percent", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, "description": null, + "name": "created_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "order_by_desc", + "defaultValue": null, "description": null, + "name": "order_by_desc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { + "defaultValue": null, + "description": null, "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "cea_level_preoperative", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, "description": null, + "name": "updated_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "biomarker_test_method", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "progesterone_receptor_result_ihc", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "category", + "defaultValue": null, "description": null, + "name": "offset", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "Node", - "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_clinical_test", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "estrogen_receptor_percent_positive_ihc", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ldh_normal_range_upper", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "estrogen_receptor_result_ihc", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "fev1_ref_pre_bronch_percent", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "her2_erbb2_result_fish", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "microsatellite_instability_abnormal", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "progesterone_receptor_percent_positive_ihc", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_project", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "administering_ic", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "availability_mechanism", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "availability_type", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "code", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_collected", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "dbgap_accession_number", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "institution", + ], + "deprecationReason": null, "description": null, + "isDeprecated": false, + "name": "clinical_test", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "clinical_test", "ofType": null } - }, - "defaultValue": null - }, - { - "name": "intended_release_date", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "investigator", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "investigator_affiliation", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "investigator_name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "location", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "project_title", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "releasable", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "released", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "research_focus_area", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "research_program", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "support_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "support_source", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "year_awarded", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "project_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_program", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "dbgap_accession_number", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "core_metadata_collection", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "submitter_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "project_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_datetime", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_datetime", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "accepts_healthy_volunteers", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "actual_enrollment", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "arm", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "arm_description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "arm_name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "arm_type", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "brief_summary", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "brief_title", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, { - "name": "category", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "clinical_trial_website", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "collaborators", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "condition", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "contact", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "contributor", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "coverage", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "creator", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data_availability_date", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data_available", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data_available_for_request", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data_category", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data_format", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data_type", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "eligibility_criteria", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "enrollment", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "fda_regulated_device_product", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "fda_regulated_drug_product", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first_posted_date", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "focus", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "has_data_monitoring_committee", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "intervention_type", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ipd_sharing_statement", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "language", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "last_update_posted_date", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "location", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "locations_removed", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nct_number", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "original_estimated_enrollment", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "primary_completion_date", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "principle_investigator", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "prs_account", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "publications", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "publisher", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "recruitment_status", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "responsible_party", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "rights", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "secondary_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "source", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "state", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "study_completion_date", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "study_design_allocation", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "study_design_intervention_model", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "study_design_masking", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "study_design_primary_purpose", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "study_phase", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "study_start_date", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "subject", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "submitted_date", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "title", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "us_product", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "verification_date", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "projects", - "description": null, "args": [ { - "name": "id", + "defaultValue": null, "description": null, + "name": "her2_erbb2_result_ihc", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "submitter_id", + "defaultValue": null, "description": null, + "name": "order_by_asc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "ids", + "defaultValue": null, "description": null, + "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -18984,116 +18737,40 @@ "name": "String", "ofType": null } - }, - "defaultValue": null - }, - { - "name": "quick_search", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by_asc", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + } }, { - "name": "order_by_desc", + "defaultValue": null, "description": null, + "name": "with_path_to_any", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } }, { - "name": "with_links", + "defaultValue": null, "description": null, + "name": "ldh_level_at_diagnosis", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_links_any", + "defaultValue": null, "description": null, + "name": "submitter_id", "type": { "kind": "LIST", "name": null, @@ -19102,12 +18779,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "without_links", + "defaultValue": null, "description": null, + "name": "biomarker_result", "type": { "kind": "LIST", "name": null, @@ -19116,40 +18793,60 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to", + "defaultValue": null, "description": null, + "name": "fev1_fvc_pre_bronch_percent", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to_any", + "defaultValue": null, "description": null, + "name": "fev1_ref_post_bronch_percent", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "without_path_to", + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "with_path_to", "type": { "kind": "LIST", "name": null, @@ -19158,12 +18855,12 @@ "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "administering_ic", + "defaultValue": null, "description": null, + "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -19172,26 +18869,26 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "availability_mechanism", + "defaultValue": null, "description": null, + "name": "dlco_ref_predictive_percent", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "availability_type", + "defaultValue": null, "description": null, + "name": "her2_erbb2_percent_positive_ihc", "type": { "kind": "LIST", "name": null, @@ -19200,12 +18897,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "code", + "defaultValue": null, "description": null, + "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -19214,12 +18911,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_description", + "defaultValue": null, "description": null, + "name": "biomarker_name", "type": { "kind": "LIST", "name": null, @@ -19228,12 +18925,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "date_collected", + "defaultValue": null, "description": null, + "name": "state", "type": { "kind": "LIST", "name": null, @@ -19242,54 +18939,46 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "dbgap_accession_number", + "defaultValue": null, "description": null, + "name": "fev1_fvc_post_bronch_percent", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "institution", + "defaultValue": null, "description": null, + "name": "created_after", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "intended_release_date", + "defaultValue": null, "description": null, + "name": "order_by_desc", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "investigator", + "defaultValue": null, "description": null, + "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -19298,12 +18987,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "investigator_affiliation", + "defaultValue": null, "description": null, + "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -19312,26 +19001,36 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "investigator_name", + "defaultValue": null, "description": null, + "name": "cea_level_preoperative", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "location", + "defaultValue": null, "description": null, + "name": "biomarker_test_method", "type": { "kind": "LIST", "name": null, @@ -19340,26 +19039,26 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "name", + "defaultValue": null, "description": null, + "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "project_title", + "defaultValue": null, "description": null, + "name": "progesterone_receptor_result_ihc", "type": { "kind": "LIST", "name": null, @@ -19368,54 +19067,50 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "releasable", + "defaultValue": null, "description": null, + "name": "with_links", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "released", + "defaultValue": null, "description": null, + "name": "offset", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, { - "name": "research_focus_area", + "defaultValue": null, "description": null, + "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_clinical_test", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "research_program", + "defaultValue": null, "description": null, + "name": "estrogen_receptor_percent_positive_ihc", "type": { "kind": "LIST", "name": null, @@ -19424,40 +19119,36 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "state", + "defaultValue": null, "description": null, + "name": "quick_search", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "support_id", + "defaultValue": null, "description": null, + "name": "ldh_normal_range_upper", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "support_source", + "defaultValue": null, "description": null, + "name": "estrogen_receptor_result_ihc", "type": { "kind": "LIST", "name": null, @@ -19466,12 +19157,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "year_awarded", + "defaultValue": null, "description": null, + "name": "fev1_ref_pre_bronch_percent", "type": { "kind": "LIST", "name": null, @@ -19480,12 +19171,12 @@ "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "project_id", + "defaultValue": null, "description": null, + "name": "ids", "type": { "kind": "LIST", "name": null, @@ -19494,53 +19185,36 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "not", + "defaultValue": null, "description": null, + "name": "her2_erbb2_result_fish", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_project", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "project", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "open_access_docs", - "description": null, - "args": [ + } + }, { - "name": "id", + "defaultValue": null, "description": null, + "name": "updated_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "submitter_id", + "defaultValue": null, "description": null, + "name": "microsatellite_instability_abnormal", "type": { "kind": "LIST", "name": null, @@ -19549,12 +19223,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "ids", + "defaultValue": null, "description": null, + "name": "progesterone_receptor_percent_positive_ihc", "type": { "kind": "LIST", "name": null, @@ -19563,102 +19237,59 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "quick_search", + "defaultValue": null, "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, "type": { "kind": "SCALAR", "name": "Int", "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_clinical_test_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ { - "name": "updated_before", + "defaultValue": null, "description": null, + "name": "type_of_sample", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "updated_after", + "defaultValue": null, "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { "name": "order_by_asc", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by_desc", - "description": null, "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "with_links", + "defaultValue": null, "description": null, + "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -19667,82 +19298,82 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_links_any", + "defaultValue": null, "description": null, + "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "without_links", + "defaultValue": null, "description": null, + "name": "somatic_mutations_identified", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to", + "defaultValue": null, "description": null, + "name": "marker_panel_description", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to_any", + "defaultValue": null, "description": null, + "name": "submitter_id", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "without_path_to", + "defaultValue": null, "description": null, + "name": "experimental_intent", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "created_datetime", + "defaultValue": null, "description": null, + "name": "type_of_specimen", "type": { "kind": "LIST", "name": null, @@ -19751,12 +19382,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_category", + "defaultValue": null, "description": null, + "name": "type_of_data", "type": { "kind": "LIST", "name": null, @@ -19765,26 +19396,46 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_format", + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "with_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_type", + "defaultValue": null, "description": null, + "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -19793,12 +19444,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "doc_url", + "defaultValue": null, "description": null, + "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -19807,12 +19458,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "error_type", + "defaultValue": null, "description": null, + "name": "state", "type": { "kind": "LIST", "name": null, @@ -19821,12 +19472,32 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "file_name", + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -19835,26 +19506,26 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "file_size", + "defaultValue": null, "description": null, + "name": "with_links_any", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "file_state", + "defaultValue": null, "description": null, + "name": "associated_experiment", "type": { "kind": "LIST", "name": null, @@ -19863,26 +19534,36 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "md5sum", + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "object_id", + "defaultValue": null, "description": null, + "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -19891,95 +19572,88 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "project_id", + "defaultValue": null, "description": null, + "name": "copy_numbers_identified", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "state", + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_experiment", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "updated_datetime", + "defaultValue": null, "description": null, + "name": "number_samples_per_experimental_group", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "not", + "defaultValue": null, "description": null, + "name": "number_experimental_group", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_open_access_doc", + "kind": "SCALAR", + "name": "Int", "ofType": null } - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "open_access_doc", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "clinical_trial_files", - "description": null, - "args": [ + } + }, { - "name": "id", + "defaultValue": null, "description": null, + "name": "quick_search", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "submitter_id", + "defaultValue": null, "description": null, + "name": "data_description", "type": { "kind": "LIST", "name": null, @@ -19988,116 +19662,91 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "ids", + "defaultValue": null, "description": null, + "name": "indels_identified", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "quick_search", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_after", + "defaultValue": null, "description": null, + "name": "ids", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "updated_before", + "defaultValue": null, "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { "name": "updated_after", - "description": null, "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "order_by_asc", + "defaultValue": null, "description": null, + "name": "experimental_description", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "order_by_desc", + "defaultValue": null, "description": null, + "name": "first", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - }, - "defaultValue": null - }, + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "experiment", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "experiment", + "ofType": null + } + } + }, + { + "args": [ { - "name": "with_links", + "defaultValue": null, "description": null, + "name": "type_of_sample", "type": { "kind": "LIST", "name": null, @@ -20106,26 +19755,22 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_links_any", + "defaultValue": null, "description": null, + "name": "order_by_asc", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "without_links", + "defaultValue": null, "description": null, + "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -20134,12 +19779,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to", + "defaultValue": null, "description": null, + "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, @@ -20148,40 +19793,40 @@ "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to_any", + "defaultValue": null, "description": null, + "name": "somatic_mutations_identified", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "without_path_to", + "defaultValue": null, "description": null, + "name": "marker_panel_description", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "created_datetime", + "defaultValue": null, "description": null, + "name": "submitter_id", "type": { "kind": "LIST", "name": null, @@ -20190,12 +19835,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_category", + "defaultValue": null, "description": null, + "name": "experimental_intent", "type": { "kind": "LIST", "name": null, @@ -20204,12 +19849,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_format", + "defaultValue": null, "description": null, + "name": "type_of_specimen", "type": { "kind": "LIST", "name": null, @@ -20218,12 +19863,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_type", + "defaultValue": null, "description": null, + "name": "type_of_data", "type": { "kind": "LIST", "name": null, @@ -20232,26 +19877,46 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "error_type", + "defaultValue": null, "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "file_name", + "defaultValue": null, "description": null, + "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -20260,26 +19925,26 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "file_size", + "defaultValue": null, "description": null, + "name": "created_datetime", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "file_state", + "defaultValue": null, "description": null, + "name": "state", "type": { "kind": "LIST", "name": null, @@ -20288,12 +19953,32 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "md5sum", + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -20302,12 +19987,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "object_id", + "defaultValue": null, "description": null, + "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -20316,12 +20001,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "project_id", + "defaultValue": null, "description": null, + "name": "associated_experiment", "type": { "kind": "LIST", "name": null, @@ -20330,26 +20015,36 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "state", + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "updated_datetime", + "defaultValue": null, "description": null, + "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -20358,171 +20053,187 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "not", + "defaultValue": null, "description": null, + "name": "copy_numbers_identified", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_clinical_trial_file", + "kind": "SCALAR", + "name": "Boolean", "ofType": null } - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "clinical_trial_file", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_projects_count", - "description": null, - "args": [ + } + }, { - "name": "id", + "defaultValue": null, "description": null, + "name": "offset", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - }, - "defaultValue": null + } }, { - "name": "submitter_id", + "defaultValue": null, "description": null, + "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_experiment", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "ids", + "defaultValue": null, "description": null, + "name": "number_samples_per_experimental_group", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "quick_search", + "defaultValue": null, "description": null, + "name": "number_experimental_group", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } }, { - "name": "first", + "defaultValue": null, "description": null, + "name": "quick_search", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "offset", + "defaultValue": null, "description": null, + "name": "data_description", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "created_before", + "defaultValue": null, "description": null, + "name": "indels_identified", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } }, { - "name": "created_after", + "defaultValue": null, "description": null, + "name": "ids", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "updated_before", + "defaultValue": null, "description": null, + "name": "updated_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "updated_after", + "defaultValue": null, "description": null, + "name": "experimental_description", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "order_by_asc", + "defaultValue": null, "description": null, + "name": "first", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - }, - "defaultValue": null - }, + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_experiment_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ { - "name": "order_by_desc", + "defaultValue": null, "description": null, + "name": "order_by_asc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "with_links", + "defaultValue": null, "description": null, + "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -20531,26 +20242,26 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_links_any", + "defaultValue": null, "description": null, + "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "without_links", + "defaultValue": null, "description": null, + "name": "data_format", "type": { "kind": "LIST", "name": null, @@ -20559,68 +20270,60 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to", + "defaultValue": null, "description": null, + "name": "file_size", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "Int", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to_any", + "defaultValue": null, "description": null, + "name": "created_before", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "without_path_to", + "defaultValue": null, "description": null, + "name": "id", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "accepts_healthy_volunteers", + "defaultValue": null, "description": null, + "name": "with_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "actual_enrollment", + "defaultValue": null, "description": null, + "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -20629,12 +20332,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "arm", + "defaultValue": null, "description": null, + "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -20643,12 +20346,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "arm_description", + "defaultValue": null, "description": null, + "name": "error_type", "type": { "kind": "LIST", "name": null, @@ -20657,12 +20360,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "arm_name", + "defaultValue": null, "description": null, + "name": "object_id", "type": { "kind": "LIST", "name": null, @@ -20671,12 +20374,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "arm_type", + "defaultValue": null, "description": null, + "name": "state", "type": { "kind": "LIST", "name": null, @@ -20685,26 +20388,22 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "brief_summary", + "defaultValue": null, "description": null, + "name": "created_after", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "brief_title", + "defaultValue": null, "description": null, + "name": "file_name", "type": { "kind": "LIST", "name": null, @@ -20713,26 +20412,22 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "category", + "defaultValue": null, "description": null, + "name": "order_by_desc", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "clinical_trial_website", + "defaultValue": null, "description": null, + "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -20741,12 +20436,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "collaborators", + "defaultValue": null, "description": null, + "name": "file_state", "type": { "kind": "LIST", "name": null, @@ -20755,12 +20450,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "condition", + "defaultValue": null, "description": null, + "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -20769,12 +20464,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "contact", + "defaultValue": null, "description": null, + "name": "data_type", "type": { "kind": "LIST", "name": null, @@ -20783,40 +20478,36 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "contributor", + "defaultValue": null, "description": null, + "name": "updated_before", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "coverage", + "defaultValue": null, "description": null, + "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "created_datetime", + "defaultValue": null, "description": null, + "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -20825,40 +20516,36 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "creator", + "defaultValue": null, "description": null, + "name": "offset", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, { - "name": "data_availability_date", + "defaultValue": null, "description": null, + "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_submitted_unaligned_reads", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_available", + "defaultValue": null, "description": null, + "name": "submitter_id", "type": { "kind": "LIST", "name": null, @@ -20867,40 +20554,36 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_available_for_request", + "defaultValue": null, "description": null, + "name": "state_comment", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_category", + "defaultValue": null, "description": null, + "name": "quick_search", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "data_format", + "defaultValue": null, "description": null, + "name": "md5sum", "type": { "kind": "LIST", "name": null, @@ -20909,12 +20592,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_type", + "defaultValue": null, "description": null, + "name": "ids", "type": { "kind": "LIST", "name": null, @@ -20923,26 +20606,22 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "description", + "defaultValue": null, "description": null, + "name": "updated_after", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "eligibility_criteria", + "defaultValue": null, "description": null, + "name": "data_category", "type": { "kind": "LIST", "name": null, @@ -20951,12 +20630,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "enrollment", + "defaultValue": null, "description": null, + "name": "experimental_strategy", "type": { "kind": "LIST", "name": null, @@ -20965,26 +20644,49 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "fda_regulated_device_product", + "defaultValue": null, "description": null, + "name": "first", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "submitted_unaligned_reads", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "submitted_unaligned_reads", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "fda_regulated_drug_product", + "defaultValue": null, "description": null, + "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -20993,26 +20695,26 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "first_posted_date", + "defaultValue": null, "description": null, + "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "focus", + "defaultValue": null, "description": null, + "name": "data_format", "type": { "kind": "LIST", "name": null, @@ -21021,40 +20723,60 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "has_data_monitoring_committee", + "defaultValue": null, "description": null, + "name": "file_size", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } - }, - "defaultValue": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "intervention_type", + "defaultValue": null, "description": null, + "name": "with_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "ipd_sharing_statement", + "defaultValue": null, "description": null, + "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -21063,12 +20785,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "language", + "defaultValue": null, "description": null, + "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -21077,12 +20799,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "last_update_posted_date", + "defaultValue": null, "description": null, + "name": "error_type", "type": { "kind": "LIST", "name": null, @@ -21091,12 +20813,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "location", + "defaultValue": null, "description": null, + "name": "object_id", "type": { "kind": "LIST", "name": null, @@ -21105,12 +20827,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "locations_removed", + "defaultValue": null, "description": null, + "name": "state", "type": { "kind": "LIST", "name": null, @@ -21119,12 +20841,22 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "nct_number", + "defaultValue": null, "description": null, + "name": "file_name", "type": { "kind": "LIST", "name": null, @@ -21133,12 +20865,22 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "original_estimated_enrollment", + "defaultValue": null, "description": null, + "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -21147,12 +20889,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "primary_completion_date", + "defaultValue": null, "description": null, + "name": "file_state", "type": { "kind": "LIST", "name": null, @@ -21161,12 +20903,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "principle_investigator", + "defaultValue": null, "description": null, + "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -21175,12 +20917,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "project_id", + "defaultValue": null, "description": null, + "name": "data_type", "type": { "kind": "LIST", "name": null, @@ -21189,26 +20931,36 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "prs_account", + "defaultValue": null, "description": null, + "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "publications", + "defaultValue": null, "description": null, + "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -21217,26 +20969,36 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "publisher", + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_submitted_unaligned_reads", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "recruitment_status", + "defaultValue": null, "description": null, + "name": "submitter_id", "type": { "kind": "LIST", "name": null, @@ -21245,12 +21007,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "responsible_party", + "defaultValue": null, "description": null, + "name": "state_comment", "type": { "kind": "LIST", "name": null, @@ -21259,12 +21021,22 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "rights", + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "md5sum", "type": { "kind": "LIST", "name": null, @@ -21273,12 +21045,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "secondary_id", + "defaultValue": null, "description": null, + "name": "ids", "type": { "kind": "LIST", "name": null, @@ -21287,12 +21059,22 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "source", + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "data_category", "type": { "kind": "LIST", "name": null, @@ -21301,12 +21083,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "state", + "defaultValue": null, "description": null, + "name": "experimental_strategy", "type": { "kind": "LIST", "name": null, @@ -21315,26 +21097,59 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "study_completion_date", + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_submitted_unaligned_reads_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, "description": null, + "name": "percent_tumor_nuclei", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "study_design_allocation", + "defaultValue": null, "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -21343,26 +21158,26 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "study_design_intervention_model", + "defaultValue": null, "description": null, + "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "study_design_masking", + "defaultValue": null, "description": null, + "name": "submitter_id", "type": { "kind": "LIST", "name": null, @@ -21371,12 +21186,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "study_design_primary_purpose", + "defaultValue": null, "description": null, + "name": "run_name", "type": { "kind": "LIST", "name": null, @@ -21385,82 +21200,102 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "study_phase", + "defaultValue": null, "description": null, + "name": "percent_necrosis", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "study_start_date", + "defaultValue": null, "description": null, + "name": "percent_granulocyte_infiltration", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "subject", + "defaultValue": null, "description": null, + "name": "percent_inflam_infiltration", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "submitted_date", + "defaultValue": null, "description": null, + "name": "with_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "title", + "defaultValue": null, "description": null, + "name": "apoptotic_concentration", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "updated_datetime", + "defaultValue": null, "description": null, + "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -21469,77 +21304,54 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "us_product", + "defaultValue": null, "description": null, + "name": "percent_normal_cells", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "verification_date", + "defaultValue": null, "description": null, + "name": "ctc_concentration", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "not", + "defaultValue": null, "description": null, + "name": "created_datetime", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_core_metadata_collection", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null - } - ], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_open_access_docs_count", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + } }, { - "name": "submitter_id", + "defaultValue": null, "description": null, + "name": "state", "type": { "kind": "LIST", "name": null, @@ -21548,130 +21360,88 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "ids", + "defaultValue": null, "description": null, + "name": "methanol_added", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } - }, - "defaultValue": null - }, - { - "name": "quick_search", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + } }, { - "name": "offset", + "defaultValue": null, "description": null, + "name": "section_location", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "created_before", + "defaultValue": null, "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { "name": "created_after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_before", - "description": null, "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "updated_after", + "defaultValue": null, "description": null, + "name": "ctc_low_concentration", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } }, { - "name": "order_by_asc", + "defaultValue": null, "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { "name": "order_by_desc", - "description": null, "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "with_links", + "defaultValue": null, "description": null, + "name": "number_proliferating_cells", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_links_any", + "defaultValue": null, "description": null, + "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -21680,54 +21450,50 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "without_links", + "defaultValue": null, "description": null, + "name": "ctc_small_concentration", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to", + "defaultValue": null, "description": null, + "name": "with_links_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to_any", + "defaultValue": null, "description": null, + "name": "updated_before", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "without_path_to", + "defaultValue": null, "description": null, + "name": "without_path_to", "type": { "kind": "LIST", "name": null, @@ -21736,54 +21502,54 @@ "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "accepts_healthy_volunteers", + "defaultValue": null, "description": null, + "name": "percent_monocyte_infiltration", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "actual_enrollment", + "defaultValue": null, "description": null, + "name": "percent_lymphocyte_infiltration", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "arm", + "defaultValue": null, "description": null, + "name": "percent_neutrophil_infiltration", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "arm_description", + "defaultValue": null, "description": null, + "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -21792,12 +21558,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "arm_name", + "defaultValue": null, "description": null, + "name": "run_datetime", "type": { "kind": "LIST", "name": null, @@ -21806,82 +21572,88 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "arm_type", + "defaultValue": null, "description": null, + "name": "offset", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, { - "name": "brief_summary", + "defaultValue": null, "description": null, + "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_slide", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "brief_title", + "defaultValue": null, "description": null, + "name": "percent_stromal_cells", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "category", + "defaultValue": null, "description": null, + "name": "number_nucleated_cells", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "clinical_trial_website", + "defaultValue": null, "description": null, + "name": "percent_eosinophil_infiltration", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "collaborators", + "defaultValue": null, "description": null, + "name": "ids", "type": { "kind": "LIST", "name": null, @@ -21890,12 +21662,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "condition", + "defaultValue": null, "description": null, + "name": "slide_identifier", "type": { "kind": "LIST", "name": null, @@ -21904,40 +21676,87 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "contact", + "defaultValue": null, "description": null, + "name": "percent_tumor_cells", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "contributor", + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "slide", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "slide", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, "description": null, + "name": "percent_tumor_nuclei", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "coverage", + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -21946,26 +21765,26 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "created_datetime", + "defaultValue": null, "description": null, + "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "creator", + "defaultValue": null, "description": null, + "name": "submitter_id", "type": { "kind": "LIST", "name": null, @@ -21974,12 +21793,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_availability_date", + "defaultValue": null, "description": null, + "name": "run_name", "type": { "kind": "LIST", "name": null, @@ -21988,110 +21807,102 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_available", + "defaultValue": null, "description": null, + "name": "percent_necrosis", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_available_for_request", + "defaultValue": null, "description": null, + "name": "percent_granulocyte_infiltration", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_category", + "defaultValue": null, "description": null, + "name": "percent_inflam_infiltration", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_format", + "defaultValue": null, "description": null, + "name": "created_before", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "data_type", + "defaultValue": null, "description": null, + "name": "id", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "description", + "defaultValue": null, "description": null, + "name": "with_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "eligibility_criteria", + "defaultValue": null, "description": null, + "name": "apoptotic_concentration", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "enrollment", + "defaultValue": null, "description": null, + "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -22100,40 +21911,40 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "fda_regulated_device_product", + "defaultValue": null, "description": null, + "name": "percent_normal_cells", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "fda_regulated_drug_product", + "defaultValue": null, "description": null, + "name": "ctc_concentration", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "first_posted_date", + "defaultValue": null, "description": null, + "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -22142,12 +21953,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "focus", + "defaultValue": null, "description": null, + "name": "state", "type": { "kind": "LIST", "name": null, @@ -22156,26 +21967,26 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "has_data_monitoring_committee", + "defaultValue": null, "description": null, + "name": "methanol_added", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "intervention_type", + "defaultValue": null, "description": null, + "name": "section_location", "type": { "kind": "LIST", "name": null, @@ -22184,68 +21995,60 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "ipd_sharing_statement", + "defaultValue": null, "description": null, + "name": "created_after", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "language", + "defaultValue": null, "description": null, + "name": "ctc_low_concentration", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "last_update_posted_date", + "defaultValue": null, "description": null, + "name": "order_by_desc", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "location", + "defaultValue": null, "description": null, + "name": "number_proliferating_cells", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "locations_removed", + "defaultValue": null, "description": null, + "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -22254,26 +22057,26 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "nct_number", + "defaultValue": null, "description": null, + "name": "ctc_small_concentration", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "original_estimated_enrollment", + "defaultValue": null, "description": null, + "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -22282,82 +22085,78 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "primary_completion_date", + "defaultValue": null, "description": null, + "name": "updated_before", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "principle_investigator", + "defaultValue": null, "description": null, + "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "project_id", + "defaultValue": null, "description": null, + "name": "percent_monocyte_infiltration", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "prs_account", + "defaultValue": null, "description": null, + "name": "percent_lymphocyte_infiltration", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "publications", + "defaultValue": null, "description": null, + "name": "percent_neutrophil_infiltration", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "publisher", + "defaultValue": null, "description": null, + "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -22366,12 +22165,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "recruitment_status", + "defaultValue": null, "description": null, + "name": "run_datetime", "type": { "kind": "LIST", "name": null, @@ -22380,96 +22179,88 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "responsible_party", + "defaultValue": null, "description": null, + "name": "offset", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, { - "name": "rights", + "defaultValue": null, "description": null, + "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_slide", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "secondary_id", + "defaultValue": null, "description": null, + "name": "percent_stromal_cells", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "source", + "defaultValue": null, "description": null, + "name": "quick_search", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "state", + "defaultValue": null, "description": null, + "name": "number_nucleated_cells", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "study_completion_date", + "defaultValue": null, "description": null, + "name": "percent_eosinophil_infiltration", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "study_design_allocation", + "defaultValue": null, "description": null, + "name": "ids", "type": { "kind": "LIST", "name": null, @@ -22478,12 +22269,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "study_design_intervention_model", + "defaultValue": null, "description": null, + "name": "slide_identifier", "type": { "kind": "LIST", "name": null, @@ -22492,40 +22283,93 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "study_design_masking", + "defaultValue": null, "description": null, + "name": "percent_tumor_cells", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_slide_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "study_design_primary_purpose", + "defaultValue": null, "description": null, + "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "study_phase", + "defaultValue": null, "description": null, + "name": "submitter_id", "type": { "kind": "LIST", "name": null, @@ -22534,12 +22378,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "study_start_date", + "defaultValue": null, "description": null, + "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -22548,12 +22392,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "subject", + "defaultValue": null, "description": null, + "name": "keyword_name", "type": { "kind": "LIST", "name": null, @@ -22562,40 +22406,80 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, { - "name": "submitted_date", + "defaultValue": null, "description": null, + "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_keyword", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "title", + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "with_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "updated_datetime", + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -22604,12 +22488,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "us_product", + "defaultValue": null, "description": null, + "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -22618,12 +22502,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "verification_date", + "defaultValue": null, "description": null, + "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -22632,49 +22516,26 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "not", + "defaultValue": null, "description": null, + "name": "ids", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_core_metadata_collection", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null - } - ], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_clinical_trial_files_count", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + } }, { - "name": "submitter_id", + "defaultValue": null, "description": null, + "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -22683,12 +22544,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "ids", + "defaultValue": null, "description": null, + "name": "state", "type": { "kind": "LIST", "name": null, @@ -22697,116 +22558,131 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "quick_search", + "defaultValue": null, "description": null, + "name": "updated_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "first", + "defaultValue": null, "description": null, + "name": "created_after", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "offset", + "defaultValue": null, "description": null, + "name": "with_path_to_any", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } }, { - "name": "created_before", + "defaultValue": null, "description": null, + "name": "order_by_desc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "created_after", + "defaultValue": null, "description": null, + "name": "first", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - }, - "defaultValue": null + } }, { - "name": "updated_before", + "defaultValue": null, "description": null, + "name": "with_links_any", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "keyword", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "keyword", + "ofType": null + } + } + }, + { + "args": [ { - "name": "updated_after", + "defaultValue": null, "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { "name": "order_by_asc", - "description": null, "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "order_by_desc", + "defaultValue": null, "description": null, + "name": "updated_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "with_links", + "defaultValue": null, "description": null, + "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_links_any", + "defaultValue": null, "description": null, + "name": "submitter_id", "type": { "kind": "LIST", "name": null, @@ -22815,12 +22691,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "without_links", + "defaultValue": null, "description": null, + "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -22829,40 +22705,70 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to", + "defaultValue": null, "description": null, + "name": "keyword_name", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to_any", + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "name": "NotPropertiesInput_keyword", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "without_path_to", + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "with_path_to", "type": { "kind": "LIST", "name": null, @@ -22871,26 +22777,22 @@ "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "accepts_healthy_volunteers", + "defaultValue": null, "description": null, + "name": "quick_search", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "actual_enrollment", + "defaultValue": null, "description": null, + "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -22899,12 +22801,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "arm", + "defaultValue": null, "description": null, + "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -22913,12 +22815,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "arm_description", + "defaultValue": null, "description": null, + "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -22927,12 +22829,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "arm_name", + "defaultValue": null, "description": null, + "name": "ids", "type": { "kind": "LIST", "name": null, @@ -22941,12 +22843,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "arm_type", + "defaultValue": null, "description": null, + "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -22955,12 +22857,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "brief_summary", + "defaultValue": null, "description": null, + "name": "state", "type": { "kind": "LIST", "name": null, @@ -22969,82 +22871,66 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "brief_title", + "defaultValue": null, "description": null, + "name": "updated_after", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "category", + "defaultValue": null, "description": null, + "name": "created_after", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "clinical_trial_website", + "defaultValue": null, "description": null, + "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "collaborators", + "defaultValue": null, "description": null, + "name": "order_by_desc", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "condition", + "defaultValue": null, "description": null, + "name": "first", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, { - "name": "contact", + "defaultValue": null, "description": null, + "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -23053,26 +22939,35 @@ "name": "String", "ofType": null } - }, - "defaultValue": null - }, - { - "name": "contributor", + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_keyword_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, "description": null, + "name": "order_by_asc", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "coverage", + "defaultValue": null, "description": null, + "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -23081,26 +22976,26 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "created_datetime", + "defaultValue": null, "description": null, + "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "creator", + "defaultValue": null, "description": null, + "name": "data_format", "type": { "kind": "LIST", "name": null, @@ -23109,54 +23004,74 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_availability_date", + "defaultValue": null, "description": null, + "name": "file_size", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } - }, - "defaultValue": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "data_available", + "defaultValue": null, "description": null, + "name": "with_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_available_for_request", + "defaultValue": null, "description": null, + "name": "without_links", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_category", + "defaultValue": null, "description": null, + "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -23165,12 +23080,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_format", + "defaultValue": null, "description": null, + "name": "error_type", "type": { "kind": "LIST", "name": null, @@ -23179,12 +23094,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_type", + "defaultValue": null, "description": null, + "name": "object_id", "type": { "kind": "LIST", "name": null, @@ -23193,12 +23108,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "description", + "defaultValue": null, "description": null, + "name": "state", "type": { "kind": "LIST", "name": null, @@ -23207,12 +23122,22 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "eligibility_criteria", + "defaultValue": null, "description": null, + "name": "file_name", "type": { "kind": "LIST", "name": null, @@ -23221,12 +23146,22 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "enrollment", + "defaultValue": null, "description": null, + "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -23235,12 +23170,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "fda_regulated_device_product", + "defaultValue": null, "description": null, + "name": "file_state", "type": { "kind": "LIST", "name": null, @@ -23249,12 +23184,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "fda_regulated_drug_product", + "defaultValue": null, "description": null, + "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -23263,12 +23198,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "first_posted_date", + "defaultValue": null, "description": null, + "name": "data_type", "type": { "kind": "LIST", "name": null, @@ -23277,26 +23212,36 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "focus", + "defaultValue": null, "description": null, + "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "has_data_monitoring_committee", + "defaultValue": null, "description": null, + "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -23305,26 +23250,36 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, { - "name": "intervention_type", + "defaultValue": null, "description": null, + "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_aligned_reads_index", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "ipd_sharing_statement", + "defaultValue": null, "description": null, + "name": "submitter_id", "type": { "kind": "LIST", "name": null, @@ -23333,12 +23288,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "language", + "defaultValue": null, "description": null, + "name": "state_comment", "type": { "kind": "LIST", "name": null, @@ -23347,12 +23302,22 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "last_update_posted_date", + "defaultValue": null, "description": null, + "name": "md5sum", "type": { "kind": "LIST", "name": null, @@ -23361,12 +23326,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "location", + "defaultValue": null, "description": null, + "name": "ids", "type": { "kind": "LIST", "name": null, @@ -23375,12 +23340,22 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "locations_removed", + "defaultValue": null, "description": null, + "name": "data_category", "type": { "kind": "LIST", "name": null, @@ -23389,12 +23364,49 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "aligned_reads_index", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "aligned_reads_index", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "nct_number", + "defaultValue": null, "description": null, + "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -23403,26 +23415,26 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "original_estimated_enrollment", + "defaultValue": null, "description": null, + "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "primary_completion_date", + "defaultValue": null, "description": null, + "name": "data_format", "type": { "kind": "LIST", "name": null, @@ -23431,40 +23443,60 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "principle_investigator", + "defaultValue": null, "description": null, + "name": "file_size", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "project_id", + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "with_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "prs_account", + "defaultValue": null, "description": null, + "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -23473,12 +23505,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "publications", + "defaultValue": null, "description": null, + "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -23487,12 +23519,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "publisher", + "defaultValue": null, "description": null, + "name": "error_type", "type": { "kind": "LIST", "name": null, @@ -23501,12 +23533,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "recruitment_status", + "defaultValue": null, "description": null, + "name": "object_id", "type": { "kind": "LIST", "name": null, @@ -23515,12 +23547,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "responsible_party", + "defaultValue": null, "description": null, + "name": "state", "type": { "kind": "LIST", "name": null, @@ -23529,12 +23561,22 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "rights", + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "file_name", "type": { "kind": "LIST", "name": null, @@ -23543,12 +23585,22 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "secondary_id", + "defaultValue": null, "description": null, + "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -23557,12 +23609,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "source", + "defaultValue": null, "description": null, + "name": "file_state", "type": { "kind": "LIST", "name": null, @@ -23571,12 +23623,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "state", + "defaultValue": null, "description": null, + "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -23585,12 +23637,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "study_completion_date", + "defaultValue": null, "description": null, + "name": "data_type", "type": { "kind": "LIST", "name": null, @@ -23599,26 +23651,36 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "study_design_allocation", + "defaultValue": null, "description": null, + "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "study_design_intervention_model", + "defaultValue": null, "description": null, + "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -23627,26 +23689,36 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, { - "name": "study_design_masking", + "defaultValue": null, "description": null, + "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_aligned_reads_index", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "study_design_primary_purpose", + "defaultValue": null, "description": null, + "name": "submitter_id", "type": { "kind": "LIST", "name": null, @@ -23655,12 +23727,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "study_phase", + "defaultValue": null, "description": null, + "name": "state_comment", "type": { "kind": "LIST", "name": null, @@ -23669,12 +23741,22 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "study_start_date", + "defaultValue": null, "description": null, + "name": "md5sum", "type": { "kind": "LIST", "name": null, @@ -23683,12 +23765,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "subject", + "defaultValue": null, "description": null, + "name": "ids", "type": { "kind": "LIST", "name": null, @@ -23697,12 +23779,22 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "submitted_date", + "defaultValue": null, "description": null, + "name": "data_category", "type": { "kind": "LIST", "name": null, @@ -23711,12 +23803,45 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "title", + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_aligned_reads_index_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -23725,26 +23850,26 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "updated_datetime", + "defaultValue": null, "description": null, + "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "us_product", + "defaultValue": null, "description": null, + "name": "run_name", "type": { "kind": "LIST", "name": null, @@ -23753,12 +23878,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "verification_date", + "defaultValue": null, "description": null, + "name": "submitter_id", "type": { "kind": "LIST", "name": null, @@ -23767,69 +23892,60 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "not", + "defaultValue": null, "description": null, + "name": "file_size", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_core_metadata_collection", + "kind": "SCALAR", + "name": "Int", "ofType": null } - }, - "defaultValue": null - } - ], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_transaction_logs_count", - "description": null, - "args": [ + } + }, { - "name": "id", + "defaultValue": null, "description": null, + "name": "created_before", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "type", + "defaultValue": null, "description": null, + "name": "id", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "quick_search", + "defaultValue": null, "description": null, + "name": "with_path_to", "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } }, { - "name": "project_id", + "defaultValue": null, "description": null, + "name": "protocol_used", "type": { "kind": "LIST", "name": null, @@ -23838,52 +23954,54 @@ "name": "String", "ofType": null } - }, - "defaultValue": null - }, - { - "name": "project", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + } }, { - "name": "program", + "defaultValue": null, "description": null, + "name": "cell_type", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "order_by_asc", + "defaultValue": null, "description": null, + "name": "without_links", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "order_by_desc", + "defaultValue": null, "description": null, + "name": "created_datetime", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "related_cases", + "defaultValue": null, "description": null, + "name": "error_type", "type": { "kind": "LIST", "name": null, @@ -23892,42 +24010,50 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "first", + "defaultValue": null, "description": null, + "name": "object_id", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "last", + "defaultValue": null, "description": null, + "name": "state", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "offset", + "defaultValue": null, "description": null, + "name": "created_after", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "entities", + "defaultValue": null, "description": null, + "name": "file_name", "type": { "kind": "LIST", "name": null, @@ -23936,105 +24062,130 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "is_dry_run", + "defaultValue": null, "description": null, + "name": "order_by_desc", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "closed", + "defaultValue": null, "description": null, + "name": "project_id", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "committable", - "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", + "defaultValue": null, + "description": null, + "name": "panel_used", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "state", + "defaultValue": null, "description": null, + "name": "file_state", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "committed_by", + "defaultValue": null, "description": null, + "name": "with_links_any", "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_transaction_logs", - "description": null, - "args": [ + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, { - "name": "id", + "defaultValue": null, "description": null, + "name": "data_type", "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "type", + "defaultValue": null, "description": null, + "name": "updated_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "quick_search", + "defaultValue": null, "description": null, + "name": "without_path_to", "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } }, { - "name": "project_id", + "defaultValue": null, + "description": null, + "name": "cell_count", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, "description": null, + "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -24043,52 +24194,60 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "project", + "defaultValue": null, "description": null, + "name": "offset", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - }, - "defaultValue": null + } }, { - "name": "program", + "defaultValue": null, "description": null, + "name": "not", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_slide_image", + "ofType": null + } + } }, { - "name": "order_by_asc", + "defaultValue": null, "description": null, + "name": "state_comment", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "order_by_desc", + "defaultValue": null, "description": null, + "name": "quick_search", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "related_cases", + "defaultValue": null, "description": null, + "name": "data_format", "type": { "kind": "LIST", "name": null, @@ -24097,42 +24256,54 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "first", + "defaultValue": null, "description": null, + "name": "frame_identifier", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "last", + "defaultValue": null, "description": null, + "name": "cell_identifier", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "offset", + "defaultValue": null, "description": null, + "name": "md5sum", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "entities", + "defaultValue": null, "description": null, + "name": "ids", "type": { "kind": "LIST", "name": null, @@ -24141,99 +24312,115 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "is_dry_run", + "defaultValue": null, "description": null, + "name": "updated_after", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "closed", + "defaultValue": null, "description": null, + "name": "data_category", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "committable", - "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "state", + "defaultValue": null, "description": null, + "name": "experimental_strategy", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "committed_by", + "defaultValue": null, "description": null, + "name": "first", "type": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null - }, - "defaultValue": null + } } ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "slide_image", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "OBJECT", - "name": "TransactionLog", + "name": "slide_image", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null + } }, { - "name": "_links", - "description": null, "args": [ { - "name": "id", + "defaultValue": null, "description": null, + "name": "order_by_asc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "submitter_id", + "defaultValue": null, "description": null, + "name": "updated_datetime", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "ids", + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, "description": null, + "name": "run_name", "type": { "kind": "LIST", "name": null, @@ -24242,384 +24429,314 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "quick_search", + "defaultValue": null, "description": null, + "name": "submitter_id", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "first", + "defaultValue": null, "description": null, + "name": "file_size", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "10" + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } }, { - "name": "offset", + "defaultValue": null, "description": null, + "name": "created_before", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "created_before", + "defaultValue": null, "description": null, + "name": "id", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "created_after", + "defaultValue": null, "description": null, + "name": "with_path_to", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } }, { - "name": "updated_before", + "defaultValue": null, "description": null, + "name": "protocol_used", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "updated_after", + "defaultValue": null, "description": null, + "name": "cell_type", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "order_by_asc", + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "error_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "object_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, "description": null, + "name": "created_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "order_by_desc", + "defaultValue": null, + "description": null, + "name": "file_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, "description": null, + "name": "order_by_desc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { + "defaultValue": null, + "description": null, "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, "description": null, + "name": "panel_used", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "category", + "defaultValue": null, "description": null, + "name": "updated_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "open_access_doc", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "submitter_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "project_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_datetime", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_datetime", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data_category", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data_format", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data_type", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "doc_url", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "error_type", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "file_name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "file_size", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "file_state", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "md5sum", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "object_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "state", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "core_metadata_collections", - "description": null, - "args": [ + } + }, { - "name": "id", + "defaultValue": null, "description": null, + "name": "without_path_to", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } }, { - "name": "submitter_id", + "defaultValue": null, "description": null, + "name": "cell_count", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "ids", + "defaultValue": null, "description": null, + "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -24628,102 +24745,60 @@ "name": "String", "ofType": null } - }, - "defaultValue": null - }, - { - "name": "quick_search", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + } }, { - "name": "first", + "defaultValue": null, "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { "name": "offset", - "description": null, "type": { "kind": "SCALAR", "name": "Int", "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + } }, { - "name": "updated_after", + "defaultValue": null, "description": null, + "name": "not", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_slide_image", + "ofType": null + } + } }, { - "name": "order_by_asc", + "defaultValue": null, "description": null, + "name": "state_comment", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "order_by_desc", + "defaultValue": null, "description": null, + "name": "quick_search", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "with_links", + "defaultValue": null, "description": null, + "name": "data_format", "type": { "kind": "LIST", "name": null, @@ -24732,12 +24807,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_links_any", + "defaultValue": null, "description": null, + "name": "frame_identifier", "type": { "kind": "LIST", "name": null, @@ -24746,12 +24821,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "without_links", + "defaultValue": null, "description": null, + "name": "cell_identifier", "type": { "kind": "LIST", "name": null, @@ -24760,54 +24835,50 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to", + "defaultValue": null, "description": null, + "name": "md5sum", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to_any", + "defaultValue": null, "description": null, + "name": "ids", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "without_path_to", + "defaultValue": null, "description": null, + "name": "updated_after", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "accepts_healthy_volunteers", + "defaultValue": null, "description": null, + "name": "data_category", "type": { "kind": "LIST", "name": null, @@ -24816,12 +24887,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "actual_enrollment", + "defaultValue": null, "description": null, + "name": "experimental_strategy", "type": { "kind": "LIST", "name": null, @@ -24830,12 +24901,35 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "arm", + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_slide_image_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, "description": null, + "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -24844,12 +24938,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "arm_description", + "defaultValue": null, "description": null, + "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -24858,68 +24952,60 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "arm_name", + "defaultValue": null, "description": null, + "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "arm_type", + "defaultValue": null, "description": null, + "name": "order_by_asc", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "brief_summary", + "defaultValue": null, "description": null, + "name": "updated_before", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "brief_title", + "defaultValue": null, "description": null, + "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "category", + "defaultValue": null, "description": null, + "name": "ids", "type": { "kind": "LIST", "name": null, @@ -24928,12 +25014,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "clinical_trial_website", + "defaultValue": null, "description": null, + "name": "schema_version", "type": { "kind": "LIST", "name": null, @@ -24942,68 +25028,76 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "collaborators", + "defaultValue": null, "description": null, + "name": "quick_search", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "condition", + "defaultValue": null, "description": null, + "name": "updated_after", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "contact", + "defaultValue": null, "description": null, + "name": "created_after", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "contributor", + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_root", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "coverage", + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -25012,26 +25106,73 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "created_datetime", + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "with_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "creator", + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "root", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "root", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, "description": null, + "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -25040,12 +25181,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_availability_date", + "defaultValue": null, "description": null, + "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -25054,40 +25195,60 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_available", + "defaultValue": null, "description": null, + "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "data_available_for_request", + "defaultValue": null, "description": null, + "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_category", + "defaultValue": null, "description": null, + "name": "ids", "type": { "kind": "LIST", "name": null, @@ -25096,12 +25257,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_format", + "defaultValue": null, "description": null, + "name": "schema_version", "type": { "kind": "LIST", "name": null, @@ -25110,40 +25271,76 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_type", + "defaultValue": null, "description": null, + "name": "quick_search", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "description", + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_root", "ofType": null } - }, - "defaultValue": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "eligibility_criteria", + "defaultValue": null, "description": null, + "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -25152,26 +25349,79 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "enrollment", + "defaultValue": null, "description": null, + "name": "with_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_root_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "fda_regulated_device_product", + "defaultValue": null, "description": null, + "name": "creator", "type": { "kind": "LIST", "name": null, @@ -25180,26 +25430,26 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "fda_regulated_drug_product", + "defaultValue": null, "description": null, + "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "first_posted_date", + "defaultValue": null, "description": null, + "name": "submitter_id", "type": { "kind": "LIST", "name": null, @@ -25208,26 +25458,26 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "focus", + "defaultValue": null, "description": null, + "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_core_metadata_collection", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "has_data_monitoring_committee", + "defaultValue": null, "description": null, + "name": "relation", "type": { "kind": "LIST", "name": null, @@ -25236,12 +25486,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "intervention_type", + "defaultValue": null, "description": null, + "name": "contributor", "type": { "kind": "LIST", "name": null, @@ -25250,26 +25500,46 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "ipd_sharing_statement", + "defaultValue": null, "description": null, + "name": "with_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "language", + "defaultValue": null, "description": null, + "name": "subject", "type": { "kind": "LIST", "name": null, @@ -25278,12 +25548,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "last_update_posted_date", + "defaultValue": null, "description": null, + "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -25292,12 +25562,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "location", + "defaultValue": null, "description": null, + "name": "title", "type": { "kind": "LIST", "name": null, @@ -25306,12 +25576,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "locations_removed", + "defaultValue": null, "description": null, + "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -25320,12 +25590,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "nct_number", + "defaultValue": null, "description": null, + "name": "format", "type": { "kind": "LIST", "name": null, @@ -25334,12 +25604,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "original_estimated_enrollment", + "defaultValue": null, "description": null, + "name": "source", "type": { "kind": "LIST", "name": null, @@ -25348,12 +25618,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "primary_completion_date", + "defaultValue": null, "description": null, + "name": "state", "type": { "kind": "LIST", "name": null, @@ -25362,12 +25632,32 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "principle_investigator", + "defaultValue": null, "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -25376,12 +25666,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "project_id", + "defaultValue": null, "description": null, + "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -25390,12 +25680,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "prs_account", + "defaultValue": null, "description": null, + "name": "description", "type": { "kind": "LIST", "name": null, @@ -25404,12 +25694,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "publications", + "defaultValue": null, "description": null, + "name": "data_type", "type": { "kind": "LIST", "name": null, @@ -25418,26 +25708,36 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "publisher", + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "recruitment_status", + "defaultValue": null, "description": null, + "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -25446,12 +25746,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "responsible_party", + "defaultValue": null, "description": null, + "name": "coverage", "type": { "kind": "LIST", "name": null, @@ -25460,12 +25760,22 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "rights", + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "date", "type": { "kind": "LIST", "name": null, @@ -25474,12 +25784,22 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "secondary_id", + "defaultValue": null, "description": null, + "name": "language", "type": { "kind": "LIST", "name": null, @@ -25488,12 +25808,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "source", + "defaultValue": null, "description": null, + "name": "rights", "type": { "kind": "LIST", "name": null, @@ -25502,12 +25822,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "state", + "defaultValue": null, "description": null, + "name": "publisher", "type": { "kind": "LIST", "name": null, @@ -25516,12 +25836,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "study_completion_date", + "defaultValue": null, "description": null, + "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -25530,12 +25850,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "study_design_allocation", + "defaultValue": null, "description": null, + "name": "ids", "type": { "kind": "LIST", "name": null, @@ -25544,12 +25864,59 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "core_metadata_collection", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "core_metadata_collection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "study_design_intervention_model", + "defaultValue": null, "description": null, + "name": "creator", "type": { "kind": "LIST", "name": null, @@ -25558,26 +25925,26 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "study_design_masking", + "defaultValue": null, "description": null, + "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "study_design_primary_purpose", + "defaultValue": null, "description": null, + "name": "submitter_id", "type": { "kind": "LIST", "name": null, @@ -25586,26 +25953,26 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "study_phase", + "defaultValue": null, "description": null, + "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_core_metadata_collection", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "study_start_date", + "defaultValue": null, "description": null, + "name": "relation", "type": { "kind": "LIST", "name": null, @@ -25614,12 +25981,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "subject", + "defaultValue": null, "description": null, + "name": "contributor", "type": { "kind": "LIST", "name": null, @@ -25628,26 +25995,46 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "submitted_date", + "defaultValue": null, "description": null, + "name": "with_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "title", + "defaultValue": null, "description": null, + "name": "subject", "type": { "kind": "LIST", "name": null, @@ -25656,12 +26043,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "updated_datetime", + "defaultValue": null, "description": null, + "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -25670,12 +26057,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "us_product", + "defaultValue": null, "description": null, + "name": "title", "type": { "kind": "LIST", "name": null, @@ -25684,12 +26071,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "verification_date", + "defaultValue": null, "description": null, + "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -25698,53 +26085,26 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "not", + "defaultValue": null, "description": null, + "name": "format", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_core_metadata_collection", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "core_metadata_collection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_core_metadata_collections_count", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + } }, { - "name": "submitter_id", + "defaultValue": null, "description": null, + "name": "source", "type": { "kind": "LIST", "name": null, @@ -25753,12 +26113,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "ids", + "defaultValue": null, "description": null, + "name": "state", "type": { "kind": "LIST", "name": null, @@ -25767,102 +26127,32 @@ "name": "String", "ofType": null } - }, - "defaultValue": null - }, - { - "name": "quick_search", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + } }, { - "name": "created_before", + "defaultValue": null, "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { "name": "created_after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_after", - "description": null, "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "order_by_asc", + "defaultValue": null, "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { "name": "order_by_desc", - "description": null, "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "with_links", + "defaultValue": null, "description": null, + "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -25871,12 +26161,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_links_any", + "defaultValue": null, "description": null, + "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -25885,12 +26175,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "without_links", + "defaultValue": null, "description": null, + "name": "description", "type": { "kind": "LIST", "name": null, @@ -25899,40 +26189,36 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to", + "defaultValue": null, "description": null, + "name": "data_type", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to_any", + "defaultValue": null, "description": null, + "name": "updated_before", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "without_path_to", + "defaultValue": null, "description": null, + "name": "without_path_to", "type": { "kind": "LIST", "name": null, @@ -25941,12 +26227,12 @@ "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "created_datetime", + "defaultValue": null, "description": null, + "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -25955,12 +26241,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_category", + "defaultValue": null, "description": null, + "name": "coverage", "type": { "kind": "LIST", "name": null, @@ -25969,26 +26255,22 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_format", + "defaultValue": null, "description": null, + "name": "offset", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, { - "name": "data_type", + "defaultValue": null, "description": null, + "name": "date", "type": { "kind": "LIST", "name": null, @@ -25997,12 +26279,22 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "doc_url", + "defaultValue": null, "description": null, + "name": "language", "type": { "kind": "LIST", "name": null, @@ -26011,12 +26303,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "error_type", + "defaultValue": null, "description": null, + "name": "rights", "type": { "kind": "LIST", "name": null, @@ -26025,12 +26317,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "file_name", + "defaultValue": null, "description": null, + "name": "publisher", "type": { "kind": "LIST", "name": null, @@ -26039,26 +26331,26 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "file_size", + "defaultValue": null, "description": null, + "name": "updated_datetime", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "file_state", + "defaultValue": null, "description": null, + "name": "ids", "type": { "kind": "LIST", "name": null, @@ -26067,26 +26359,45 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "md5sum", + "defaultValue": null, "description": null, + "name": "updated_after", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "object_id", + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_core_metadata_collection_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, "description": null, + "name": "relationship_gender", "type": { "kind": "LIST", "name": null, @@ -26095,26 +26406,46 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "project_id", + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "state", + "defaultValue": null, "description": null, + "name": "submitter_id", "type": { "kind": "LIST", "name": null, @@ -26123,12 +26454,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "updated_datetime", + "defaultValue": null, "description": null, + "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -26137,69 +26468,36 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "not", + "defaultValue": null, "description": null, + "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_open_access_doc", + "name": "NotPropertiesInput_family_history", "ofType": null } - }, - "defaultValue": null - } - ], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_transaction_logs_count", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + } }, { - "name": "quick_search", + "defaultValue": null, "description": null, + "name": "offset", "type": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null - }, - "defaultValue": null + } }, { - "name": "project_id", + "defaultValue": null, "description": null, + "name": "relationship_type", "type": { "kind": "LIST", "name": null, @@ -26208,52 +26506,56 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "project", + "defaultValue": null, "description": null, + "name": "created_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "program", + "defaultValue": null, "description": null, + "name": "id", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "order_by_asc", + "defaultValue": null, "description": null, + "name": "with_path_to", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } }, { - "name": "order_by_desc", + "defaultValue": null, "description": null, + "name": "quick_search", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "related_cases", + "defaultValue": null, "description": null, + "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -26262,42 +26564,54 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "first", + "defaultValue": null, "description": null, + "name": "relative_with_cancer_history", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "last", + "defaultValue": null, "description": null, + "name": "created_datetime", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "offset", + "defaultValue": null, "description": null, + "name": "updated_datetime", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "entities", + "defaultValue": null, "description": null, + "name": "ids", "type": { "kind": "LIST", "name": null, @@ -26306,159 +26620,201 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "is_dry_run", + "defaultValue": null, "description": null, + "name": "relationship_primary_diagnosis", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "closed", + "defaultValue": null, "description": null, + "name": "project_id", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "committable", - "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", + "defaultValue": null, + "description": null, + "name": "state", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "state", + "defaultValue": null, "description": null, + "name": "updated_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "committed_by", + "defaultValue": null, "description": null, + "name": "created_after", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_transaction_logs", - "description": null, - "args": [ + } + }, { - "name": "id", + "defaultValue": null, "description": null, + "name": "with_path_to_any", "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } }, { - "name": "type", + "defaultValue": null, "description": null, + "name": "order_by_desc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "quick_search", + "defaultValue": null, "description": null, + "name": "first", "type": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null - }, - "defaultValue": null + } }, { - "name": "project_id", + "defaultValue": null, "description": null, + "name": "relationship_age_at_diagnosis", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "project", + "defaultValue": null, "description": null, + "name": "with_links_any", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "family_history", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "family_history", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "relationship_gender", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "program", + "defaultValue": null, "description": null, + "name": "order_by_asc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "order_by_asc", + "defaultValue": null, "description": null, + "name": "updated_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "order_by_desc", + "defaultValue": null, "description": null, + "name": "without_path_to", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } }, { - "name": "related_cases", + "defaultValue": null, "description": null, + "name": "submitter_id", "type": { "kind": "LIST", "name": null, @@ -26467,42 +26823,50 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "first", + "defaultValue": null, "description": null, + "name": "with_links", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "last", + "defaultValue": null, "description": null, + "name": "not", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_family_history", + "ofType": null + } + } }, { - "name": "offset", + "defaultValue": null, "description": null, + "name": "offset", "type": { "kind": "SCALAR", "name": "Int", "ofType": null - }, - "defaultValue": null + } }, { - "name": "entities", + "defaultValue": null, "description": null, + "name": "relationship_type", "type": { "kind": "LIST", "name": null, @@ -26511,99 +26875,98 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "is_dry_run", + "defaultValue": null, "description": null, + "name": "created_before", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "closed", + "defaultValue": null, "description": null, + "name": "id", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "committable", - "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", + "defaultValue": null, + "description": null, + "name": "with_path_to", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } }, { - "name": "state", + "defaultValue": null, "description": null, + "name": "quick_search", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "committed_by", + "defaultValue": null, "description": null, + "name": "without_links", "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TransactionLog", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_links", - "description": null, - "args": [ + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, { - "name": "id", + "defaultValue": null, "description": null, + "name": "relative_with_cancer_history", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "submitter_id", + "defaultValue": null, "description": null, + "name": "created_datetime", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "ids", + "defaultValue": null, "description": null, + "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -26612,1184 +26975,127376 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "quick_search", + "defaultValue": null, "description": null, + "name": "ids", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "first", + "defaultValue": null, "description": null, + "name": "relationship_primary_diagnosis", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "10" + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "offset", + "defaultValue": null, "description": null, + "name": "project_id", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "created_before", + "defaultValue": null, "description": null, + "name": "state", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "created_after", + "defaultValue": null, "description": null, + "name": "updated_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "updated_before", + "defaultValue": null, "description": null, + "name": "created_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "updated_after", + "defaultValue": null, "description": null, + "name": "with_path_to_any", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } }, { - "name": "order_by_asc", + "defaultValue": null, "description": null, + "name": "order_by_desc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "order_by_desc", + "defaultValue": null, "description": null, + "name": "first", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - }, - "defaultValue": null + } }, { - "name": "project_id", + "defaultValue": null, "description": null, + "name": "relationship_age_at_diagnosis", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } }, { - "name": "category", + "defaultValue": null, "description": null, + "name": "with_links_any", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } } ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_core_metadata_collection", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "accepts_healthy_volunteers", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "actual_enrollment", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "arm", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "arm_description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "arm_name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "arm_type", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "brief_summary", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "brief_title", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "category", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "clinical_trial_website", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "collaborators", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "condition", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contact", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "contributor", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "coverage", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_datetime", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "creator", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_availability_date", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_available", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_available_for_request", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_category", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_format", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data_type", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "eligibility_criteria", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "enrollment", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "fda_regulated_device_product", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "fda_regulated_drug_product", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first_posted_date", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "focus", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "has_data_monitoring_committee", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "intervention_type", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ipd_sharing_statement", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "language", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last_update_posted_date", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "location", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "locations_removed", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "nct_number", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "original_estimated_enrollment", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "primary_completion_date", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "principle_investigator", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "project_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "prs_account", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "publications", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "publisher", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "recruitment_status", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "responsible_party", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "rights", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "secondary_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "source", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "study_completion_date", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "study_design_allocation", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "study_design_intervention_model", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "study_design_masking", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "study_design_primary_purpose", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "study_phase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "study_start_date", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subject", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "submitted_date", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "submitter_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "title", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_datetime", + "deprecationReason": null, "description": null, + "isDeprecated": false, + "name": "_family_history_count", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - }, - "defaultValue": null + } }, { - "name": "us_product", - "description": null, + "args": [ + { + "defaultValue": null, + "description": null, + "name": "sample_type_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "biospecimen_anatomic_site", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "oct_embedded", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "tumor_code_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "intermediate_dimension", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "sample_volume", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_ffpe", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "tumor_descriptor", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "sample_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "time_between_excision_and_freezing", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "shortest_dimension", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "diagnosis_pathologically_confirmed", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "current_weight", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "composition", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "time_between_clamping_and_freezing", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "method_of_sample_procurement", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "tumor_code", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "tissue_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_sample", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_sample_procurement", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "freezing_method", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "preservation_method", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_collection", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "initial_weight", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "longest_dimension", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "sample", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "sample", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "sample_type_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "biospecimen_anatomic_site", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "oct_embedded", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "tumor_code_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "intermediate_dimension", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "sample_volume", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_ffpe", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "tumor_descriptor", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "sample_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "time_between_excision_and_freezing", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "shortest_dimension", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "diagnosis_pathologically_confirmed", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "current_weight", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "composition", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "time_between_clamping_and_freezing", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "method_of_sample_procurement", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "tumor_code", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "tissue_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_sample", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_sample_procurement", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "freezing_method", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "preservation_method", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_collection", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "initial_weight", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "longest_dimension", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_sample_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "md5sum", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_category", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_size", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_format", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "of_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "state_comment", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "error_type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "object_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": "10", + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "datanode", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DataNode", + "ofType": null + } + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "viewer", + "type": { + "kind": "OBJECT", + "name": "viewer", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "Root", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "is_dry_run", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "closed", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "committed_by", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "submitter", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "role", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "program", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "project", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "created_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "canonical_json", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "snapshots", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TransactionSnapshot", + "ofType": null + } + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "documents", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TransactionDocument", + "ofType": null + } + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "related_cases", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TransactionResponseEntityRelatedCases", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "TransactionLog", + "possibleTypes": null + }, + { + "description": "The `ID` scalar type represents a unique identifier, often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as `\"4\"`) or integer (such as `4`) input value will be accepted as an ID.", + "enumValues": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "SCALAR", + "name": "ID", + "possibleTypes": null + }, + { + "description": "The `Boolean` scalar type represents `true` or `false`.", + "enumValues": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "SCALAR", + "name": "Boolean", + "possibleTypes": null + }, + { + "description": "The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.", + "enumValues": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "SCALAR", + "name": "String", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "transaction_id", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "action", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "old_props", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "new_props", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "TransactionSnapshot", + "possibleTypes": null + }, + { + "description": "The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^53 - 1) and 2^53 - 1 since represented in JSON as double-precision floating point numbers specifiedby [IEEE 754](http://en.wikipedia.org/wiki/IEEE_floating_point).", + "enumValues": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "SCALAR", + "name": "Int", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "transaction_id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "doc_format", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "doc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "doc_size", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "response_json", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "response", + "type": { + "kind": "OBJECT", + "name": "TransactionResponse", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "TransactionDocument", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "transaction_id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "success", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "entity_error_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "transactional_error_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "code", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "message", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "transactional_errors", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "created_entity_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "updated_entity_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "released_entity_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "cases_related_to_updated_entities_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "cases_related_to_created_entities_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "entities", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TransactionResponseEntity", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "TransactionResponse", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "valid", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "action", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "unique_keys", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "related_cases", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TransactionResponseEntityRelatedCases", + "ofType": null + } + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "errors", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TransactionResponseError", + "ofType": null + } + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "warnings", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "TransactionResponseEntity", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "submitter_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "TransactionResponseEntityRelatedCases", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "keys", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "deprecationReason": null, + "description": "List of entities that depend on this entity such that the transaction failed.", + "isDeprecated": false, + "name": "dependents", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "GenericEntity", + "ofType": null + } + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "message", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "TransactionResponseError", + "possibleTypes": null + }, + { + "description": "Skeleton properties to reference generic entities", + "enumValues": null, + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "GenericEntity", + "possibleTypes": null + }, + { + "description": "The query object that represents the psqlgraph.Node base", + "enumValues": null, + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "created_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "updated_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": null, + "kind": "INTERFACE", + "name": "Node", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "experimental_metadata", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "experiment", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "case", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "diagnosis", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "treatment", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "sample", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "slide", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "slide_count", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "slide_image", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "core_metadata_collection", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "submitted_aligned_reads", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "read_group", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "submitted_copy_number", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "aliquot", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "submitted_methylation", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "submitted_somatic_mutation", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "read_group_qc", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "submitted_unaligned_reads", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "aligned_reads_index", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "project", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "program", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "publication", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "keyword", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "acknowledgement", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "clinical_test", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "demographic", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "family_history", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "exposure", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "data_release", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "root", + "ofType": null + } + ] + }, + { + "description": null, + "enumValues": null, + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "created_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "updated_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "md5sum", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "data_type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "file_name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "error_type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "data_format", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "object_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "submitter_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "data_category", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "file_size", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "state_comment", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "file_state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "type_of_sample", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "somatic_mutations_identified", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "marker_panel_description", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "experimental_intent", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "type_of_specimen", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "type_of_data", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "associated_experiment", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "copy_numbers_identified", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_experiment", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "number_samples_per_experimental_group", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "number_experimental_group", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_description", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "indels_identified", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "experimental_description", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "experiments", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "experiment", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_format", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_size", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "error_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "object_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_experimental_metadata", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state_comment", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "md5sum", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_category", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_experiments_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", + "name": "committable", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_dry_run", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "committed_by", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "entities", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "program", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "closed", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "related_cases", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_transaction_logs_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", + "name": "committable", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_dry_run", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "committed_by", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "entities", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "program", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "closed", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "related_cases", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_transaction_logs", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TransactionLog", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": "10", + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "experimental_metadata", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "created_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "updated_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "associated_experiment", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "copy_numbers_identified", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "number_samples_per_experimental_group", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "indels_identified", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "marker_panel_description", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "number_experimental_group", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "experimental_intent", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "type_of_sample", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "data_description", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "type_of_data", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "submitter_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "somatic_mutations_identified", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "type_of_specimen", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "experimental_description", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_case", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "disease_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "primary_site", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "cases", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "case", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_format", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_size", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "error_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "object_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_experimental_metadata", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state_comment", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "md5sum", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_category", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "experiment_metadata_files", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "experimental_metadata", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "code", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "releasable", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "availability_mechanism", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "dbgap_accession_number", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "investigator_affiliation", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "support_source", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "investigator_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "date_collected", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "intended_release_date", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "support_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "released", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "availability_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_project", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "projects", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "project", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "type_of_sample", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "somatic_mutations_identified", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "marker_panel_description", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "experimental_intent", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "type_of_specimen", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "type_of_data", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "associated_experiment", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "copy_numbers_identified", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_experiment", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "number_samples_per_experimental_group", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "number_experimental_group", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_description", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "indels_identified", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "experimental_description", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_cases_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "type_of_sample", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "somatic_mutations_identified", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "marker_panel_description", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "experimental_intent", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "type_of_specimen", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "type_of_data", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "associated_experiment", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "copy_numbers_identified", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_experiment", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "number_samples_per_experimental_group", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "number_experimental_group", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_description", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "indels_identified", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "experimental_description", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_experiment_metadata_files_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "type_of_sample", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "somatic_mutations_identified", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "marker_panel_description", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "experimental_intent", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "type_of_specimen", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "type_of_data", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "associated_experiment", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "copy_numbers_identified", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_experiment", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "number_samples_per_experimental_group", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "number_experimental_group", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_description", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "indels_identified", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "experimental_description", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_projects_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", + "name": "committable", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_dry_run", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "committed_by", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "entities", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "program", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "closed", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "related_cases", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_transaction_logs_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", + "name": "committable", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_dry_run", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "committed_by", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "entities", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "program", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "closed", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "related_cases", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_transaction_logs", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TransactionLog", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": "10", + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "experiment", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "created_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "updated_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "disease_type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "submitter_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "primary_site", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "year_of_diagnosis", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "method_of_diagnosis", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "laterality", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ann_arbor_pathologic_stage", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "vital_status", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "morphology", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ann_arbor_clinical_stage", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_last_known_disease_status", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "perineural_invasion_present", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_hiv_diagnosis", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_pathologic_m", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_last_follow_up", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "prior_treatment", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_clinical_t", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "colon_polyps_history", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_pathologic_n", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_clinical_n", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_clinical_m", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ldh_level_at_diagnosis", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "residual_disease", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_pathologic_stage", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "lymphatic_invasion_present", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "progression_or_recurrence", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_diagnosis", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "cause_of_death", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "burkitt_lymphoma_clinical_variant", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ann_arbor_extranodal_involvement", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_clinical_stage", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "hiv_positive", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ann_arbor_b_symptoms", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "classification_of_tumor", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "last_known_disease_status", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "primary_diagnosis", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "tumor_stage", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "age_at_diagnosis", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "hpv_positive_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_death", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "vascular_invasion_present", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "new_event_anatomic_site", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_recurrence", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "tumor_grade", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "figo_stage", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "tissue_or_organ_of_origin", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_birth", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "hpv_status", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "prior_malignancy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "new_event_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_new_event", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "circumferential_resection_margin", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ldh_normal_range_upper", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "lymph_nodes_positive", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "site_of_resection_or_biopsy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_pathologic_t", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "diagnoses", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "diagnosis", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "her2_erbb2_result_ihc", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ldh_level_at_diagnosis", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "biomarker_result", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "fev1_fvc_pre_bronch_percent", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "fev1_ref_post_bronch_percent", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "dlco_ref_predictive_percent", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "her2_erbb2_percent_positive_ihc", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "biomarker_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "fev1_fvc_post_bronch_percent", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "cea_level_preoperative", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "biomarker_test_method", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "progesterone_receptor_result_ihc", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_clinical_test", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "estrogen_receptor_percent_positive_ihc", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ldh_normal_range_upper", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "estrogen_receptor_result_ihc", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "fev1_ref_pre_bronch_percent", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "her2_erbb2_result_fish", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "microsatellite_instability_abnormal", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "progesterone_receptor_percent_positive_ihc", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "clinical_tests", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "clinical_test", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "race", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "year_of_birth", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "year_of_death", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_demographic", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "gender", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ethnicity", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "demographics", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "demographic", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "type_of_sample", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "somatic_mutations_identified", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "marker_panel_description", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "experimental_intent", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "type_of_specimen", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "type_of_data", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "associated_experiment", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "copy_numbers_identified", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_experiment", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "number_samples_per_experimental_group", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "number_experimental_group", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_description", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "indels_identified", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "experimental_description", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "experiments", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "experiment", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "relationship_gender", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_family_history", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "relationship_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "relative_with_cancer_history", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "relationship_primary_diagnosis", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "relationship_age_at_diagnosis", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "family_histories", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "family_history", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "sample_type_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "biospecimen_anatomic_site", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "oct_embedded", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "tumor_code_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "intermediate_dimension", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "sample_volume", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_ffpe", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "tumor_descriptor", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "sample_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "time_between_excision_and_freezing", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "shortest_dimension", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "diagnosis_pathologically_confirmed", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "current_weight", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "composition", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "time_between_clamping_and_freezing", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "method_of_sample_procurement", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "tumor_code", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "tissue_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_sample", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_sample_procurement", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "freezing_method", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "preservation_method", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_collection", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "initial_weight", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "longest_dimension", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "samples", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "sample", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "cigarettes_per_day", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "years_smoked", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "height", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "tobacco_smoking_status", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "pack_years_smoked", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "weight", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "tobacco_smoking_onset_year", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "alcohol_history", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "bmi", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_exposure", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "alcohol_intensity", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "tobacco_smoking_quit_year", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "exposures", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "exposure", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_case", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "disease_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "primary_site", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_diagnoses_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_case", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "disease_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "primary_site", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_clinical_tests_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_case", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "disease_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "primary_site", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_demographics_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_case", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "disease_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "primary_site", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_experiments_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_case", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "disease_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "primary_site", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_family_histories_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_case", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "disease_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "primary_site", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_samples_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_case", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "disease_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "primary_site", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_exposures_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", + "name": "committable", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_dry_run", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "committed_by", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "entities", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "program", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "closed", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "related_cases", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_transaction_logs_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", + "name": "committable", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_dry_run", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "committed_by", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "entities", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "program", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "closed", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "related_cases", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_transaction_logs", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TransactionLog", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": "10", + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "case", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "created_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "updated_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "ann_arbor_b_symptoms", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "year_of_diagnosis", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "classification_of_tumor", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "last_known_disease_status", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "method_of_diagnosis", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "laterality", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "ann_arbor_pathologic_stage", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "vital_status", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "primary_diagnosis", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "submitter_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "tumor_stage", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "age_at_diagnosis", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "hpv_positive_type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "days_to_death", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "morphology", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "ann_arbor_clinical_stage", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "new_event_anatomic_site", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "days_to_last_known_disease_status", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "perineural_invasion_present", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "days_to_hiv_diagnosis", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "ajcc_clinical_n", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "ajcc_pathologic_t", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "prior_treatment", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "ajcc_clinical_t", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "colon_polyps_history", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "ajcc_clinical_m", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "ajcc_pathologic_m", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "ajcc_pathologic_n", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "ldh_level_at_diagnosis", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "days_to_last_follow_up", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "residual_disease", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "days_to_recurrence", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "tumor_grade", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "figo_stage", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "cause_of_death", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "lymphatic_invasion_present", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "tissue_or_organ_of_origin", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "hpv_status", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "days_to_birth", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "progression_or_recurrence", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "days_to_new_event", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "prior_malignancy", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "vascular_invasion_present", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "new_event_type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "ajcc_pathologic_stage", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "burkitt_lymphoma_clinical_variant", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "circumferential_resection_margin", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "ldh_normal_range_upper", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "ann_arbor_extranodal_involvement", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "lymph_nodes_positive", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "site_of_resection_or_biopsy", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "ajcc_clinical_stage", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "hiv_positive", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_case", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "disease_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "primary_site", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "cases", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "case", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_treatment", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "treatment_outcome", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "treatment_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "treatment_intent_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "treatment_or_therapy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "therapeutic_agents", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_treatment", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "treatment_anatomic_site", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_treatment_end", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_treatment_start", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "treatments", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "treatment", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "sample_type_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "biospecimen_anatomic_site", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "oct_embedded", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "tumor_code_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "intermediate_dimension", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "sample_volume", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_ffpe", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "tumor_descriptor", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "sample_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "time_between_excision_and_freezing", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "shortest_dimension", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "diagnosis_pathologically_confirmed", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "current_weight", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "composition", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "time_between_clamping_and_freezing", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "method_of_sample_procurement", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "tumor_code", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "tissue_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_sample", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_sample_procurement", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "freezing_method", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "preservation_method", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_collection", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "initial_weight", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "longest_dimension", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "samples", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "sample", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "her2_erbb2_result_ihc", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ldh_level_at_diagnosis", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "biomarker_result", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "fev1_fvc_pre_bronch_percent", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "fev1_ref_post_bronch_percent", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "dlco_ref_predictive_percent", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "her2_erbb2_percent_positive_ihc", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "biomarker_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "fev1_fvc_post_bronch_percent", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "cea_level_preoperative", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "biomarker_test_method", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "progesterone_receptor_result_ihc", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_clinical_test", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "estrogen_receptor_percent_positive_ihc", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ldh_normal_range_upper", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "estrogen_receptor_result_ihc", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "fev1_ref_pre_bronch_percent", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "her2_erbb2_result_fish", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "microsatellite_instability_abnormal", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "progesterone_receptor_percent_positive_ihc", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "clinical_tests", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "clinical_test", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "year_of_diagnosis", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "method_of_diagnosis", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "laterality", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ann_arbor_pathologic_stage", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "vital_status", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "morphology", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ann_arbor_clinical_stage", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_last_known_disease_status", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "perineural_invasion_present", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_hiv_diagnosis", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_pathologic_m", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_last_follow_up", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "prior_treatment", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_clinical_t", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "colon_polyps_history", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_pathologic_n", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_clinical_n", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_clinical_m", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ldh_level_at_diagnosis", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "residual_disease", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_pathologic_stage", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "lymphatic_invasion_present", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "progression_or_recurrence", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_diagnosis", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "cause_of_death", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "burkitt_lymphoma_clinical_variant", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ann_arbor_extranodal_involvement", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_clinical_stage", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "hiv_positive", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ann_arbor_b_symptoms", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "classification_of_tumor", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "last_known_disease_status", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "primary_diagnosis", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "tumor_stage", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "age_at_diagnosis", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "hpv_positive_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_death", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "vascular_invasion_present", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "new_event_anatomic_site", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_recurrence", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "tumor_grade", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "figo_stage", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "tissue_or_organ_of_origin", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_birth", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "hpv_status", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "prior_malignancy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "new_event_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_new_event", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "circumferential_resection_margin", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ldh_normal_range_upper", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "lymph_nodes_positive", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "site_of_resection_or_biopsy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_pathologic_t", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_cases_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "year_of_diagnosis", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "method_of_diagnosis", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "laterality", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ann_arbor_pathologic_stage", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "vital_status", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "morphology", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ann_arbor_clinical_stage", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_last_known_disease_status", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "perineural_invasion_present", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_hiv_diagnosis", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_pathologic_m", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_last_follow_up", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "prior_treatment", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_clinical_t", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "colon_polyps_history", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_pathologic_n", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_clinical_n", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_clinical_m", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ldh_level_at_diagnosis", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "residual_disease", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_pathologic_stage", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "lymphatic_invasion_present", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "progression_or_recurrence", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_diagnosis", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "cause_of_death", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "burkitt_lymphoma_clinical_variant", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ann_arbor_extranodal_involvement", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_clinical_stage", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "hiv_positive", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ann_arbor_b_symptoms", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "classification_of_tumor", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "last_known_disease_status", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "primary_diagnosis", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "tumor_stage", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "age_at_diagnosis", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "hpv_positive_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_death", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "vascular_invasion_present", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "new_event_anatomic_site", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_recurrence", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "tumor_grade", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "figo_stage", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "tissue_or_organ_of_origin", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_birth", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "hpv_status", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "prior_malignancy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "new_event_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_new_event", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "circumferential_resection_margin", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ldh_normal_range_upper", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "lymph_nodes_positive", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "site_of_resection_or_biopsy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_pathologic_t", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_treatments_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "year_of_diagnosis", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "method_of_diagnosis", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "laterality", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ann_arbor_pathologic_stage", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "vital_status", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "morphology", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ann_arbor_clinical_stage", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_last_known_disease_status", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "perineural_invasion_present", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_hiv_diagnosis", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_pathologic_m", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_last_follow_up", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "prior_treatment", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_clinical_t", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "colon_polyps_history", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_pathologic_n", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_clinical_n", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_clinical_m", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ldh_level_at_diagnosis", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "residual_disease", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_pathologic_stage", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "lymphatic_invasion_present", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "progression_or_recurrence", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_diagnosis", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "cause_of_death", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "burkitt_lymphoma_clinical_variant", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ann_arbor_extranodal_involvement", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_clinical_stage", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "hiv_positive", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ann_arbor_b_symptoms", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "classification_of_tumor", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "last_known_disease_status", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "primary_diagnosis", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "tumor_stage", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "age_at_diagnosis", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "hpv_positive_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_death", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "vascular_invasion_present", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "new_event_anatomic_site", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_recurrence", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "tumor_grade", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "figo_stage", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "tissue_or_organ_of_origin", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_birth", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "hpv_status", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "prior_malignancy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "new_event_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_new_event", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "circumferential_resection_margin", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ldh_normal_range_upper", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "lymph_nodes_positive", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "site_of_resection_or_biopsy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_pathologic_t", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_samples_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "year_of_diagnosis", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "method_of_diagnosis", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "laterality", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ann_arbor_pathologic_stage", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "vital_status", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "morphology", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ann_arbor_clinical_stage", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_last_known_disease_status", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "perineural_invasion_present", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_hiv_diagnosis", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_pathologic_m", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_last_follow_up", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "prior_treatment", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_clinical_t", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "colon_polyps_history", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_pathologic_n", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_clinical_n", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_clinical_m", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ldh_level_at_diagnosis", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "residual_disease", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_pathologic_stage", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "lymphatic_invasion_present", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "progression_or_recurrence", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_diagnosis", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "cause_of_death", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "burkitt_lymphoma_clinical_variant", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ann_arbor_extranodal_involvement", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_clinical_stage", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "hiv_positive", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ann_arbor_b_symptoms", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "classification_of_tumor", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "last_known_disease_status", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "primary_diagnosis", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "tumor_stage", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "age_at_diagnosis", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "hpv_positive_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_death", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "vascular_invasion_present", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "new_event_anatomic_site", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_recurrence", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "tumor_grade", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "figo_stage", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "tissue_or_organ_of_origin", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_birth", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "hpv_status", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "prior_malignancy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "new_event_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_new_event", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "circumferential_resection_margin", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ldh_normal_range_upper", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "lymph_nodes_positive", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "site_of_resection_or_biopsy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_pathologic_t", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_clinical_tests_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", + "name": "committable", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_dry_run", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "committed_by", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "entities", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "program", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "closed", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "related_cases", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_transaction_logs_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", + "name": "committable", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_dry_run", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "committed_by", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "entities", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "program", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "closed", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "related_cases", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_transaction_logs", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TransactionLog", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": "10", + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "diagnosis", + "possibleTypes": null + }, + { + "description": "The `Float` scalar type represents signed double-precision fractional values as specified by [IEEE 754](http://en.wikipedia.org/wiki/IEEE_floating_point). ", + "enumValues": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "SCALAR", + "name": "Float", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "type", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "publisher", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "description", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "creator", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "format", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "rights", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "contributor", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "language", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "relation", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "source", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "coverage", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "date", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "title", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "subject", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "relative_nuclear_intensity", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "relative_nuclear_size", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "er_localization", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ck_signal", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "biomarker_signal", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "relative_cytokeratin_intensity", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "relative_er_intensity", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "associated_experiment", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "copy_numbers_identified", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "experimental_description", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "indels_identified", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "marker_panel_description", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "experimental_intent", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "type_of_sample", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "number_samples_per_experimental_group", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "somatic_mutations_identified", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "type_of_specimen", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "type_of_data", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "number_experimental_group", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_description", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "aliquot_quantity", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "aliquot_volume", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "amount", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "analyte_type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "analyte_type_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "concentration", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "source_center", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "assay_method", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "assay_instrument_model", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "assay_instrument", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_aligned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "encoding", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "sequence_duplication_levels", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "basic_statistics", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "per_base_sequence_content", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "kmer_content", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_gc_content", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "per_tile_sequence_quality", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "per_sequence_gc_content", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "per_base_n_content", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "workflow_end_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "adapter_content", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "per_base_sequence_quality", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "fastq_name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "workflow_link", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "total_sequences", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "total_aligned_reads", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "sequence_length_distribution", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "per_sequence_quality_score", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "workflow_type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "overrepresented_sequences", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "workflow_start_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "workflow_version", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "sample_type_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "time_between_excision_and_freezing", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "oct_embedded", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "tumor_code_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "intermediate_dimension", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "sample_volume", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_ffpe", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "tumor_descriptor", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "sample_type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "biospecimen_anatomic_site", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "diagnosis_pathologically_confirmed", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "current_weight", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "composition", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "time_between_clamping_and_freezing", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "shortest_dimension", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "tumor_code", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "method_of_sample_procurement", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "tissue_type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_sample_procurement", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "freezing_method", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "preservation_method", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_collection", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "initial_weight", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "longest_dimension", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ann_arbor_b_symptoms", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "year_of_diagnosis", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "classification_of_tumor", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "last_known_disease_status", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "method_of_diagnosis", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "laterality", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ann_arbor_pathologic_stage", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "primary_diagnosis", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "tumor_stage", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "age_at_diagnosis", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "hpv_positive_type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "vital_status", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "morphology", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ann_arbor_clinical_stage", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "new_event_anatomic_site", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_last_known_disease_status", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "perineural_invasion_present", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_hiv_diagnosis", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_pathologic_m", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_pathologic_t", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "prior_treatment", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_clinical_t", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "colon_polyps_history", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_pathologic_n", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_pathologic_stage", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_clinical_n", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_clinical_m", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "burkitt_lymphoma_clinical_variant", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "residual_disease", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_recurrence", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "tumor_grade", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "figo_stage", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "cause_of_death", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "lymphatic_invasion_present", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "tissue_or_organ_of_origin", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_birth", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "progression_or_recurrence", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "hpv_status", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "prior_malignancy", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "new_event_type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_death", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_new_event", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "circumferential_resection_margin", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ann_arbor_extranodal_involvement", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "lymph_nodes_positive", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "hiv_positive", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "site_of_resection_or_biopsy", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_last_follow_up", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_clinical_stage", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "vascular_invasion_present", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "protocol_used", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "cell_type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "panel_used", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "cell_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "frame_identifier", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "cell_identifier", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "total_variants", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "cigarettes_per_day", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "weight", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "alcohol_history", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "alcohol_intensity", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "bmi", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "years_smoked", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "height", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "tobacco_smoking_quit_year", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "tobacco_smoking_onset_year", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "tobacco_smoking_status", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "pack_years_smoked", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "disease_type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "primary_site", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "md5sum", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "error_type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_format", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "object_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_category", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_size", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "state_comment", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "experimental_strategy", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "relationship_primary_diagnosis", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "relative_with_cancer_history", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "relationship_gender", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "relationship_type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "relationship_age_at_diagnosis", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "doi", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "pmid", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "keyword_name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "acknowledgee", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "her2_erbb2_result_ihc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "fev1_fvc_pre_bronch_percent", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "fev1_ref_post_bronch_percent", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "fev1_fvc_post_bronch_percent", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "dlco_ref_predictive_percent", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "her2_erbb2_percent_positive_ihc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "biomarker_test_method", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ldh_level_at_diagnosis", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "progesterone_receptor_percent_positive_ihc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "cea_level_preoperative", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "biomarker_name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "progesterone_receptor_result_ihc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "biomarker_result", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "estrogen_receptor_percent_positive_ihc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ldh_normal_range_upper", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "estrogen_receptor_result_ihc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "fev1_ref_pre_bronch_percent", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "her2_erbb2_result_fish", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "microsatellite_instability_abnormal", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "gender", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "year_of_birth", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "race", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ethnicity", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "year_of_death", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "date_collected", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "code", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "intended_release_date", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "investigator_affiliation", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "availability_mechanism", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "support_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "releasable", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "support_source", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "availability_type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "investigator_name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_tumor_nuclei", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "run_name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_necrosis", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_granulocyte_infiltration", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_inflam_infiltration", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "apoptotic_concentration", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_normal_cells", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ctc_concentration", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "methanol_added", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "section_location", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ctc_low_concentration", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "number_proliferating_cells", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ctc_small_concentration", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_monocyte_infiltration", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_lymphocyte_infiltration", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_neutrophil_infiltration", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "run_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_stromal_cells", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "number_nucleated_cells", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_eosinophil_infiltration", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "slide_identifier", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_tumor_cells", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "dbgap_accession_number", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_treatment_start", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "treatment_type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_treatment", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "therapeutic_agents", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_treatment_end", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "treatment_anatomic_site", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "treatment_outcome", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "treatment_intent_type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "treatment_or_therapy", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "release_date", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "major_version", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "minor_version", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "released", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_paired_end", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "size_selection_range", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "adapter_sequence", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_strand", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_preparation_kit_name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "spike_ins_fasta", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "target_capture_kit_name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "base_caller_name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_preparation_kit_version", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "spike_ins_concentration", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "sequencing_date", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "to_trim_adapter_sequence", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "RIN", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "platform", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "barcoding_applied", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_selection", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_preparation_kit_catalog_number", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "sequencing_center", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "target_capture_kit_target_region", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "target_capture_kit_version", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "adapter_name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "read_group_name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_preparation_kit_vendor", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_strategy", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "target_capture_kit_catalog_number", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "instrument_model", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "includes_spike_ins", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "read_length", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "experiment_name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "flow_cell_barcode", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "target_capture_kit_vendor", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "base_caller_version", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_root", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "schema_version", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "description": null, + "name": "schema_version", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_root", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "description": null, + "name": "disease_type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "primary_site", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_case", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "created_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "updated_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "days_to_treatment_start", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "treatment_type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "therapeutic_agents", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "submitter_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "days_to_treatment", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "treatment_intent_type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "treatment_anatomic_site", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "treatment_outcome", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "days_to_treatment_end", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "treatment_or_therapy", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "year_of_diagnosis", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "method_of_diagnosis", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "laterality", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ann_arbor_pathologic_stage", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "vital_status", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "morphology", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ann_arbor_clinical_stage", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_last_known_disease_status", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "perineural_invasion_present", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_hiv_diagnosis", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_pathologic_m", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_last_follow_up", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "prior_treatment", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_clinical_t", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "colon_polyps_history", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_pathologic_n", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_clinical_n", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_clinical_m", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ldh_level_at_diagnosis", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "residual_disease", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_pathologic_stage", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "lymphatic_invasion_present", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "progression_or_recurrence", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_diagnosis", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "cause_of_death", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "burkitt_lymphoma_clinical_variant", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ann_arbor_extranodal_involvement", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_clinical_stage", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "hiv_positive", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ann_arbor_b_symptoms", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "classification_of_tumor", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "last_known_disease_status", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "primary_diagnosis", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "tumor_stage", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "age_at_diagnosis", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "hpv_positive_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_death", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "vascular_invasion_present", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "new_event_anatomic_site", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_recurrence", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "tumor_grade", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "figo_stage", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "tissue_or_organ_of_origin", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_birth", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "hpv_status", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "prior_malignancy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "new_event_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_new_event", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "circumferential_resection_margin", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ldh_normal_range_upper", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "lymph_nodes_positive", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "site_of_resection_or_biopsy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_pathologic_t", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "diagnoses", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "diagnosis", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_treatment", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "treatment_outcome", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "treatment_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "treatment_intent_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "treatment_or_therapy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "therapeutic_agents", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_treatment", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "treatment_anatomic_site", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_treatment_end", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_treatment_start", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_diagnoses_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", + "name": "committable", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_dry_run", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "committed_by", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "entities", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "program", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "closed", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "related_cases", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_transaction_logs_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", + "name": "committable", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_dry_run", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "committed_by", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "entities", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "program", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "closed", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "related_cases", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_transaction_logs", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TransactionLog", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": "10", + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "treatment", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "description": null, + "name": "ann_arbor_b_symptoms", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "year_of_diagnosis", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "classification_of_tumor", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "last_known_disease_status", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "method_of_diagnosis", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "laterality", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ann_arbor_pathologic_stage", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "vital_status", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "primary_diagnosis", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "tumor_stage", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "age_at_diagnosis", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "hpv_positive_type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_death", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "morphology", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ann_arbor_clinical_stage", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "new_event_anatomic_site", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_last_known_disease_status", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "perineural_invasion_present", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_hiv_diagnosis", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_clinical_n", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_pathologic_t", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "prior_treatment", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_clinical_t", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "colon_polyps_history", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_clinical_m", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_pathologic_m", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_pathologic_n", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ldh_level_at_diagnosis", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_last_follow_up", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "residual_disease", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_recurrence", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "tumor_grade", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "figo_stage", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "cause_of_death", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "lymphatic_invasion_present", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "tissue_or_organ_of_origin", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "hpv_status", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_birth", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "progression_or_recurrence", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_new_event", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "prior_malignancy", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "vascular_invasion_present", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "new_event_type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_pathologic_stage", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "burkitt_lymphoma_clinical_variant", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "circumferential_resection_margin", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ldh_normal_range_upper", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ann_arbor_extranodal_involvement", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "lymph_nodes_positive", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "site_of_resection_or_biopsy", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_clinical_stage", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "hiv_positive", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_diagnosis", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "description": null, + "name": "days_to_treatment_start", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "treatment_type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "therapeutic_agents", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_treatment", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "treatment_intent_type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "treatment_anatomic_site", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "treatment_outcome", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_treatment_end", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "treatment_or_therapy", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_treatment", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "created_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "updated_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "sample_type_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "biospecimen_anatomic_site", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "oct_embedded", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "tumor_code_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "submitter_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "intermediate_dimension", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "sample_volume", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "time_between_clamping_and_freezing", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "tumor_descriptor", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "sample_type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "time_between_excision_and_freezing", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "diagnosis_pathologically_confirmed", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "current_weight", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "composition", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "is_ffpe", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "shortest_dimension", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "method_of_sample_procurement", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "tumor_code", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "tissue_type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "days_to_sample_procurement", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "freezing_method", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "preservation_method", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "days_to_collection", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "initial_weight", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "longest_dimension", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "percent_tumor_nuclei", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "run_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_necrosis", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_granulocyte_infiltration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_inflam_infiltration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "apoptotic_concentration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_normal_cells", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ctc_concentration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "methanol_added", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "section_location", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ctc_low_concentration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "number_proliferating_cells", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ctc_small_concentration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_monocyte_infiltration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_lymphocyte_infiltration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_neutrophil_infiltration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "run_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_slide", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_stromal_cells", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "number_nucleated_cells", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_eosinophil_infiltration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "slide_identifier", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_tumor_cells", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "slides", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "slide", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_case", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "disease_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "primary_site", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "cases", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "case", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "year_of_diagnosis", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "method_of_diagnosis", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "laterality", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ann_arbor_pathologic_stage", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "vital_status", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "morphology", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ann_arbor_clinical_stage", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_last_known_disease_status", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "perineural_invasion_present", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_hiv_diagnosis", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_pathologic_m", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_last_follow_up", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "prior_treatment", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_clinical_t", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "colon_polyps_history", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_pathologic_n", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_clinical_n", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_clinical_m", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ldh_level_at_diagnosis", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "residual_disease", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_pathologic_stage", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "lymphatic_invasion_present", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "progression_or_recurrence", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_diagnosis", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "cause_of_death", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "burkitt_lymphoma_clinical_variant", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ann_arbor_extranodal_involvement", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_clinical_stage", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "hiv_positive", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ann_arbor_b_symptoms", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "classification_of_tumor", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "last_known_disease_status", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "primary_diagnosis", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "tumor_stage", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "age_at_diagnosis", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "hpv_positive_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_death", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "vascular_invasion_present", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "new_event_anatomic_site", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_recurrence", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "tumor_grade", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "figo_stage", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "tissue_or_organ_of_origin", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_birth", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "hpv_status", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "prior_malignancy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "new_event_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_new_event", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "circumferential_resection_margin", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ldh_normal_range_upper", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "lymph_nodes_positive", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "site_of_resection_or_biopsy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_pathologic_t", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "diagnoses", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "diagnosis", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "analyte_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_aliquot", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "concentration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "aliquot_volume", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "aliquot_quantity", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "analyte_type_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "amount", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "source_center", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "aliquots", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "aliquot", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "sample_type_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "biospecimen_anatomic_site", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "oct_embedded", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "tumor_code_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "intermediate_dimension", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "sample_volume", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_ffpe", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "tumor_descriptor", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "sample_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "time_between_excision_and_freezing", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "shortest_dimension", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "diagnosis_pathologically_confirmed", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "current_weight", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "composition", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "time_between_clamping_and_freezing", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "method_of_sample_procurement", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "tumor_code", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "tissue_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_sample", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_sample_procurement", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "freezing_method", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "preservation_method", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_collection", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "initial_weight", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "longest_dimension", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_slides_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "sample_type_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "biospecimen_anatomic_site", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "oct_embedded", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "tumor_code_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "intermediate_dimension", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "sample_volume", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_ffpe", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "tumor_descriptor", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "sample_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "time_between_excision_and_freezing", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "shortest_dimension", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "diagnosis_pathologically_confirmed", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "current_weight", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "composition", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "time_between_clamping_and_freezing", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "method_of_sample_procurement", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "tumor_code", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "tissue_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_sample", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_sample_procurement", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "freezing_method", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "preservation_method", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_collection", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "initial_weight", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "longest_dimension", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_cases_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "sample_type_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "biospecimen_anatomic_site", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "oct_embedded", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "tumor_code_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "intermediate_dimension", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "sample_volume", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_ffpe", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "tumor_descriptor", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "sample_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "time_between_excision_and_freezing", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "shortest_dimension", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "diagnosis_pathologically_confirmed", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "current_weight", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "composition", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "time_between_clamping_and_freezing", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "method_of_sample_procurement", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "tumor_code", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "tissue_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_sample", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_sample_procurement", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "freezing_method", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "preservation_method", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_collection", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "initial_weight", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "longest_dimension", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_diagnoses_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "sample_type_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "biospecimen_anatomic_site", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "oct_embedded", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "tumor_code_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "intermediate_dimension", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "sample_volume", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_ffpe", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "tumor_descriptor", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "sample_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "time_between_excision_and_freezing", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "shortest_dimension", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "diagnosis_pathologically_confirmed", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "current_weight", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "composition", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "time_between_clamping_and_freezing", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "method_of_sample_procurement", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "tumor_code", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "tissue_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_sample", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_sample_procurement", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "freezing_method", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "preservation_method", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_collection", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "initial_weight", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "longest_dimension", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_aliquots_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", + "name": "committable", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_dry_run", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "committed_by", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "entities", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "program", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "closed", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "related_cases", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_transaction_logs_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", + "name": "committable", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_dry_run", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "committed_by", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "entities", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "program", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "closed", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "related_cases", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_transaction_logs", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TransactionLog", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": "10", + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "sample", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "created_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "updated_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "percent_tumor_nuclei", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "submitter_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "run_name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "percent_necrosis", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "percent_granulocyte_infiltration", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "percent_inflam_infiltration", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "apoptotic_concentration", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "percent_normal_cells", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "ctc_concentration", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "methanol_added", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "section_location", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "ctc_low_concentration", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "number_proliferating_cells", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "ctc_small_concentration", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "percent_monocyte_infiltration", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "percent_lymphocyte_infiltration", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "percent_neutrophil_infiltration", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "run_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "percent_stromal_cells", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "number_nucleated_cells", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "percent_eosinophil_infiltration", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "slide_identifier", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "percent_tumor_cells", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "biomarker_signal", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "run_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "cell_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "relative_nuclear_size", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "er_localization", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "relative_er_intensity", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ck_signal", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "relative_nuclear_intensity", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "cell_count", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_slide_count", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "relative_cytokeratin_intensity", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "frame_identifier", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "cell_identifier", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "slide_counts", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "slide_count", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "run_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_size", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "protocol_used", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "cell_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "error_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "object_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "panel_used", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "cell_count", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_slide_image", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state_comment", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_format", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "frame_identifier", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "cell_identifier", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "md5sum", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_category", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "experimental_strategy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "slide_images", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "slide_image", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "sample_type_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "biospecimen_anatomic_site", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "oct_embedded", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "tumor_code_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "intermediate_dimension", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "sample_volume", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_ffpe", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "tumor_descriptor", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "sample_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "time_between_excision_and_freezing", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "shortest_dimension", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "diagnosis_pathologically_confirmed", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "current_weight", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "composition", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "time_between_clamping_and_freezing", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "method_of_sample_procurement", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "tumor_code", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "tissue_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_sample", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_sample_procurement", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "freezing_method", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "preservation_method", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_collection", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "initial_weight", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "longest_dimension", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "samples", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "sample", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "percent_tumor_nuclei", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "run_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_necrosis", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_granulocyte_infiltration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_inflam_infiltration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "apoptotic_concentration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_normal_cells", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ctc_concentration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "methanol_added", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "section_location", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ctc_low_concentration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "number_proliferating_cells", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ctc_small_concentration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_monocyte_infiltration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_lymphocyte_infiltration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_neutrophil_infiltration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "run_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_slide", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_stromal_cells", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "number_nucleated_cells", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_eosinophil_infiltration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "slide_identifier", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_tumor_cells", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_slide_counts_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "percent_tumor_nuclei", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "run_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_necrosis", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_granulocyte_infiltration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_inflam_infiltration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "apoptotic_concentration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_normal_cells", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ctc_concentration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "methanol_added", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "section_location", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ctc_low_concentration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "number_proliferating_cells", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ctc_small_concentration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_monocyte_infiltration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_lymphocyte_infiltration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_neutrophil_infiltration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "run_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_slide", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_stromal_cells", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "number_nucleated_cells", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_eosinophil_infiltration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "slide_identifier", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_tumor_cells", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_slide_images_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "percent_tumor_nuclei", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "run_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_necrosis", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_granulocyte_infiltration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_inflam_infiltration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "apoptotic_concentration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_normal_cells", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ctc_concentration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "methanol_added", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "section_location", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ctc_low_concentration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "number_proliferating_cells", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ctc_small_concentration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_monocyte_infiltration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_lymphocyte_infiltration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_neutrophil_infiltration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "run_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_slide", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_stromal_cells", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "number_nucleated_cells", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_eosinophil_infiltration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "slide_identifier", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_tumor_cells", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_samples_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", + "name": "committable", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_dry_run", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "committed_by", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "entities", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "program", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "closed", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "related_cases", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_transaction_logs_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", + "name": "committable", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_dry_run", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "committed_by", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "entities", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "program", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "closed", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "related_cases", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_transaction_logs", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TransactionLog", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": "10", + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "slide", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "created_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "updated_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "cell_type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "relative_nuclear_intensity", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "relative_nuclear_size", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "frame_identifier", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "cell_identifier", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "cell_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "run_name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "submitter_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "ck_signal", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "relative_cytokeratin_intensity", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "biomarker_signal", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "er_localization", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "relative_er_intensity", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "percent_tumor_nuclei", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "run_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_necrosis", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_granulocyte_infiltration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_inflam_infiltration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "apoptotic_concentration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_normal_cells", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ctc_concentration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "methanol_added", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "section_location", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ctc_low_concentration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "number_proliferating_cells", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ctc_small_concentration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_monocyte_infiltration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_lymphocyte_infiltration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_neutrophil_infiltration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "run_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_slide", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_stromal_cells", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "number_nucleated_cells", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_eosinophil_infiltration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "slide_identifier", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_tumor_cells", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "slides", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "slide", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "biomarker_signal", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "run_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "cell_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "relative_nuclear_size", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "er_localization", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "relative_er_intensity", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ck_signal", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "relative_nuclear_intensity", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "cell_count", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_slide_count", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "relative_cytokeratin_intensity", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "frame_identifier", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "cell_identifier", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_slides_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", + "name": "committable", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_dry_run", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "committed_by", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "entities", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "program", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "closed", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "related_cases", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_transaction_logs_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", + "name": "committable", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_dry_run", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "committed_by", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "entities", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "program", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "closed", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "related_cases", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_transaction_logs", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TransactionLog", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": "10", + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "slide_count", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "description": null, + "name": "percent_tumor_nuclei", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "run_name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_necrosis", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_granulocyte_infiltration", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_inflam_infiltration", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "apoptotic_concentration", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_normal_cells", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ctc_concentration", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "methanol_added", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "section_location", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ctc_low_concentration", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "number_proliferating_cells", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ctc_small_concentration", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_monocyte_infiltration", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_lymphocyte_infiltration", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_neutrophil_infiltration", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "run_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_stromal_cells", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "number_nucleated_cells", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_eosinophil_infiltration", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "slide_identifier", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_tumor_cells", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_slide", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "description": null, + "name": "cell_type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "relative_nuclear_intensity", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "relative_nuclear_size", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "frame_identifier", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "cell_identifier", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "cell_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "run_name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ck_signal", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "relative_cytokeratin_intensity", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "biomarker_signal", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "er_localization", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "relative_er_intensity", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_slide_count", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "created_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "updated_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "file_name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "file_size", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "submitter_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "run_name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "protocol_used", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "cell_type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "error_type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "object_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "panel_used", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "file_state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "experimental_strategy", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "data_type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "cell_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "state_comment", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "frame_identifier", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "cell_identifier", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "md5sum", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "data_format", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "data_category", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "percent_tumor_nuclei", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "run_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_necrosis", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_granulocyte_infiltration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_inflam_infiltration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "apoptotic_concentration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_normal_cells", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ctc_concentration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "methanol_added", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "section_location", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ctc_low_concentration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "number_proliferating_cells", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ctc_small_concentration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_monocyte_infiltration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_lymphocyte_infiltration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_neutrophil_infiltration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "run_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_slide", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_stromal_cells", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "number_nucleated_cells", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_eosinophil_infiltration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "slide_identifier", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_tumor_cells", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "slides", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "slide", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "creator", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_core_metadata_collection", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "relation", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "contributor", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "subject", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "title", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "format", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "source", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "description", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "coverage", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "date", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "language", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "rights", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "publisher", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "core_metadata_collections", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "core_metadata_collection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "run_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_size", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "protocol_used", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "cell_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "error_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "object_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "panel_used", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "cell_count", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_slide_image", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state_comment", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_format", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "frame_identifier", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "cell_identifier", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "md5sum", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_category", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "experimental_strategy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_slides_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "run_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_size", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "protocol_used", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "cell_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "error_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "object_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "panel_used", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "cell_count", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_slide_image", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state_comment", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_format", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "frame_identifier", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "cell_identifier", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "md5sum", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_category", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "experimental_strategy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_core_metadata_collections_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", + "name": "committable", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_dry_run", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "committed_by", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "entities", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "program", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "closed", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "related_cases", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_transaction_logs_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", + "name": "committable", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_dry_run", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "committed_by", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "entities", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "program", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "closed", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "related_cases", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_transaction_logs", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TransactionLog", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": "10", + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "slide_image", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "created_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "updated_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "publisher", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "language", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "rights", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "description", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "data_type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "creator", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "format", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "submitter_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "date", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "relation", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "source", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "coverage", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "contributor", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "title", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "subject", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_format", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_size", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "error_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "object_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_submitted_aligned_reads", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state_comment", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "md5sum", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_category", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "experimental_strategy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "submitted_aligned_reads_files", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "submitted_aligned_reads", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_format", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_size", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "error_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "object_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_aligned_reads_index", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state_comment", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "md5sum", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_category", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "aligned_reads_indexes", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "aligned_reads_index", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "run_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_size", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "protocol_used", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "cell_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "error_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "object_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "panel_used", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "cell_count", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_slide_image", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state_comment", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_format", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "frame_identifier", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "cell_identifier", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "md5sum", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_category", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "experimental_strategy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "slide_images", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "slide_image", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "code", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "releasable", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "availability_mechanism", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "dbgap_accession_number", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "investigator_affiliation", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "support_source", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "investigator_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "date_collected", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "intended_release_date", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "support_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "released", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "availability_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_project", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "projects", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "project", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_format", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_size", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "error_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "object_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_submitted_unaligned_reads", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state_comment", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "md5sum", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_category", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "experimental_strategy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "submitted_unaligned_reads_files", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "submitted_unaligned_reads", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "creator", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_core_metadata_collection", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "relation", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "contributor", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "subject", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "title", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "format", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "source", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "description", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "coverage", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "date", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "language", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "rights", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "publisher", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_submitted_aligned_reads_files_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "creator", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_core_metadata_collection", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "relation", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "contributor", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "subject", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "title", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "format", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "source", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "description", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "coverage", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "date", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "language", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "rights", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "publisher", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_aligned_reads_indexes_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "creator", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_core_metadata_collection", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "relation", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "contributor", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "subject", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "title", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "format", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "source", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "description", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "coverage", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "date", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "language", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "rights", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "publisher", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_slide_images_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "creator", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_core_metadata_collection", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "relation", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "contributor", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "subject", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "title", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "format", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "source", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "description", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "coverage", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "date", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "language", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "rights", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "publisher", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_projects_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "creator", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_core_metadata_collection", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "relation", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "contributor", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "subject", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "title", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "format", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "source", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "description", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "coverage", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "date", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "language", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "rights", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "publisher", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_submitted_unaligned_reads_files_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", + "name": "committable", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_dry_run", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "committed_by", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "entities", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "program", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "closed", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "related_cases", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_transaction_logs_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", + "name": "committable", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_dry_run", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "committed_by", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "entities", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "program", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "closed", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "related_cases", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_transaction_logs", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TransactionLog", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": "10", + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "core_metadata_collection", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "created_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "updated_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "md5sum", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "data_type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "file_name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "error_type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "data_format", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "object_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "submitter_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "data_category", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "file_size", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "state_comment", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "file_state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "experimental_strategy", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "library_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_paired_end", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "adapter_sequence", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_strand", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_preparation_kit_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "base_caller_version", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "target_capture_kit_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_preparation_kit_vendor", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "base_caller_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "size_selection_range", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_preparation_kit_version", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "sequencing_date", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "to_trim_adapter_sequence", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "RIN", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "platform", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "flow_cell_barcode", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "barcoding_applied", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_selection", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_preparation_kit_catalog_number", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "target_capture_kit_target_region", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "target_capture_kit_version", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_read_group", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "instrument_model", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "read_group_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_strategy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "spike_ins_concentration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "adapter_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "includes_spike_ins", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "read_length", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "experiment_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "spike_ins_fasta", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "target_capture_kit_vendor", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "target_capture_kit_catalog_number", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "sequencing_center", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "read_groups", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "read_group", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "percent_aligned", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "encoding", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "sequence_duplication_levels", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "basic_statistics", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "per_base_sequence_content", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "kmer_content", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_gc_content", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "per_tile_sequence_quality", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "workflow_link", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "per_sequence_gc_content", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "per_base_n_content", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "adapter_content", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "workflow_end_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "per_base_sequence_quality", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "fastq_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_read_group_qc", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "total_sequences", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "total_aligned_reads", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "sequence_length_distribution", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "per_sequence_quality_score", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "workflow_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "overrepresented_sequences", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "workflow_start_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "workflow_version", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "read_group_qcs", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "read_group_qc", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_format", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_size", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "error_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "object_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_aligned_reads_index", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state_comment", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "md5sum", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_category", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "aligned_reads_indexes", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "aligned_reads_index", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "creator", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_core_metadata_collection", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "relation", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "contributor", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "subject", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "title", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "format", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "source", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "description", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "coverage", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "date", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "language", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "rights", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "publisher", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "core_metadata_collections", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "core_metadata_collection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_format", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_size", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "error_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "object_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_submitted_aligned_reads", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state_comment", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "md5sum", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_category", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "experimental_strategy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_read_groups_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_format", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_size", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "error_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "object_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_submitted_aligned_reads", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state_comment", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "md5sum", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_category", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "experimental_strategy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_read_group_qcs_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_format", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_size", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "error_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "object_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_submitted_aligned_reads", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state_comment", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "md5sum", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_category", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "experimental_strategy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_aligned_reads_indexes_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_format", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_size", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "error_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "object_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_submitted_aligned_reads", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state_comment", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "md5sum", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_category", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "experimental_strategy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_core_metadata_collections_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", + "name": "committable", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_dry_run", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "committed_by", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "entities", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "program", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "closed", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "related_cases", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_transaction_logs_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", + "name": "committable", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_dry_run", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "committed_by", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "entities", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "program", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "closed", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "related_cases", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_transaction_logs", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TransactionLog", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": "10", + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "submitted_aligned_reads", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "created_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "updated_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "library_name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "is_paired_end", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "size_selection_range", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "adapter_sequence", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "library_strand", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "submitter_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "library_preparation_kit_name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "base_caller_version", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "target_capture_kit_name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "includes_spike_ins", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "library_preparation_kit_version", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "barcoding_applied", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "target_capture_kit_vendor", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "sequencing_date", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "spike_ins_fasta", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "to_trim_adapter_sequence", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "RIN", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "platform", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "spike_ins_concentration", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "library_selection", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "library_preparation_kit_catalog_number", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "target_capture_kit_target_region", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "target_capture_kit_version", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "read_group_name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "library_preparation_kit_vendor", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "library_strategy", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "target_capture_kit_catalog_number", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "instrument_model", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "base_caller_name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "read_length", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "experiment_name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "flow_cell_barcode", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "sequencing_center", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "adapter_name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_format", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_size", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "error_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "object_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_submitted_copy_number", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state_comment", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "md5sum", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_category", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "experimental_strategy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "submitted_copy_number_files", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "submitted_copy_number", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_format", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_size", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "error_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "object_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_submitted_aligned_reads", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state_comment", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "md5sum", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_category", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "experimental_strategy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "submitted_aligned_reads_files", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "submitted_aligned_reads", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_format", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_size", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "error_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "object_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "total_variants", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_submitted_somatic_mutation", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state_comment", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "md5sum", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_category", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "experimental_strategy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "submitted_somatic_mutations", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "submitted_somatic_mutation", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "percent_aligned", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "encoding", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "sequence_duplication_levels", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "basic_statistics", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "per_base_sequence_content", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "kmer_content", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_gc_content", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "per_tile_sequence_quality", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "workflow_link", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "per_sequence_gc_content", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "per_base_n_content", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "adapter_content", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "workflow_end_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "per_base_sequence_quality", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "fastq_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_read_group_qc", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "total_sequences", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "total_aligned_reads", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "sequence_length_distribution", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "per_sequence_quality_score", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "workflow_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "overrepresented_sequences", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "workflow_start_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "workflow_version", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "read_group_qcs", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "read_group_qc", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "analyte_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_aliquot", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "concentration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "aliquot_volume", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "aliquot_quantity", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "analyte_type_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "amount", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "source_center", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "aliquots", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "aliquot", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_format", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_size", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "error_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "object_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_submitted_unaligned_reads", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state_comment", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "md5sum", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_category", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "experimental_strategy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "submitted_unaligned_reads_files", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "submitted_unaligned_reads", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "library_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_paired_end", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "adapter_sequence", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_strand", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_preparation_kit_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "base_caller_version", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "target_capture_kit_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_preparation_kit_vendor", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "base_caller_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "size_selection_range", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_preparation_kit_version", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "sequencing_date", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "to_trim_adapter_sequence", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "RIN", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "platform", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "flow_cell_barcode", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "barcoding_applied", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_selection", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_preparation_kit_catalog_number", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "target_capture_kit_target_region", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "target_capture_kit_version", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_read_group", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "instrument_model", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "read_group_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_strategy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "spike_ins_concentration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "adapter_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "includes_spike_ins", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "read_length", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "experiment_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "spike_ins_fasta", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "target_capture_kit_vendor", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "target_capture_kit_catalog_number", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "sequencing_center", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_submitted_copy_number_files_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "library_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_paired_end", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "adapter_sequence", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_strand", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_preparation_kit_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "base_caller_version", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "target_capture_kit_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_preparation_kit_vendor", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "base_caller_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "size_selection_range", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_preparation_kit_version", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "sequencing_date", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "to_trim_adapter_sequence", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "RIN", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "platform", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "flow_cell_barcode", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "barcoding_applied", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_selection", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_preparation_kit_catalog_number", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "target_capture_kit_target_region", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "target_capture_kit_version", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_read_group", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "instrument_model", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "read_group_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_strategy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "spike_ins_concentration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "adapter_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "includes_spike_ins", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "read_length", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "experiment_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "spike_ins_fasta", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "target_capture_kit_vendor", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "target_capture_kit_catalog_number", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "sequencing_center", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_submitted_aligned_reads_files_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "library_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_paired_end", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "adapter_sequence", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_strand", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_preparation_kit_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "base_caller_version", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "target_capture_kit_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_preparation_kit_vendor", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "base_caller_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "size_selection_range", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_preparation_kit_version", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "sequencing_date", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "to_trim_adapter_sequence", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "RIN", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "platform", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "flow_cell_barcode", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "barcoding_applied", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_selection", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_preparation_kit_catalog_number", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "target_capture_kit_target_region", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "target_capture_kit_version", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_read_group", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "instrument_model", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "read_group_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_strategy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "spike_ins_concentration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "adapter_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "includes_spike_ins", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "read_length", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "experiment_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "spike_ins_fasta", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "target_capture_kit_vendor", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "target_capture_kit_catalog_number", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "sequencing_center", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_submitted_somatic_mutations_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "library_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_paired_end", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "adapter_sequence", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_strand", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_preparation_kit_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "base_caller_version", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "target_capture_kit_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_preparation_kit_vendor", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "base_caller_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "size_selection_range", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_preparation_kit_version", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "sequencing_date", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "to_trim_adapter_sequence", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "RIN", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "platform", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "flow_cell_barcode", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "barcoding_applied", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_selection", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_preparation_kit_catalog_number", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "target_capture_kit_target_region", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "target_capture_kit_version", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_read_group", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "instrument_model", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "read_group_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_strategy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "spike_ins_concentration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "adapter_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "includes_spike_ins", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "read_length", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "experiment_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "spike_ins_fasta", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "target_capture_kit_vendor", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "target_capture_kit_catalog_number", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "sequencing_center", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_read_group_qcs_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "library_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_paired_end", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "adapter_sequence", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_strand", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_preparation_kit_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "base_caller_version", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "target_capture_kit_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_preparation_kit_vendor", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "base_caller_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "size_selection_range", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_preparation_kit_version", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "sequencing_date", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "to_trim_adapter_sequence", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "RIN", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "platform", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "flow_cell_barcode", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "barcoding_applied", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_selection", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_preparation_kit_catalog_number", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "target_capture_kit_target_region", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "target_capture_kit_version", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_read_group", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "instrument_model", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "read_group_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_strategy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "spike_ins_concentration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "adapter_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "includes_spike_ins", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "read_length", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "experiment_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "spike_ins_fasta", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "target_capture_kit_vendor", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "target_capture_kit_catalog_number", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "sequencing_center", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_aliquots_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "library_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_paired_end", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "adapter_sequence", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_strand", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_preparation_kit_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "base_caller_version", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "target_capture_kit_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_preparation_kit_vendor", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "base_caller_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "size_selection_range", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_preparation_kit_version", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "sequencing_date", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "to_trim_adapter_sequence", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "RIN", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "platform", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "flow_cell_barcode", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "barcoding_applied", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_selection", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_preparation_kit_catalog_number", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "target_capture_kit_target_region", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "target_capture_kit_version", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_read_group", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "instrument_model", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "read_group_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_strategy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "spike_ins_concentration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "adapter_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "includes_spike_ins", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "read_length", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "experiment_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "spike_ins_fasta", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "target_capture_kit_vendor", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "target_capture_kit_catalog_number", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "sequencing_center", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_submitted_unaligned_reads_files_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", + "name": "committable", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_dry_run", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "committed_by", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "entities", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "program", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "closed", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "related_cases", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_transaction_logs_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", + "name": "committable", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_dry_run", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "committed_by", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "entities", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "program", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "closed", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "related_cases", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_transaction_logs", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TransactionLog", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": "10", + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "read_group", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "created_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "updated_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "md5sum", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "data_type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "file_name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "error_type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "data_format", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "object_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "submitter_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "data_category", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "file_size", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "state_comment", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "file_state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "experimental_strategy", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "library_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_paired_end", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "adapter_sequence", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_strand", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_preparation_kit_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "base_caller_version", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "target_capture_kit_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_preparation_kit_vendor", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "base_caller_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "size_selection_range", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_preparation_kit_version", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "sequencing_date", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "to_trim_adapter_sequence", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "RIN", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "platform", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "flow_cell_barcode", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "barcoding_applied", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_selection", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_preparation_kit_catalog_number", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "target_capture_kit_target_region", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "target_capture_kit_version", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_read_group", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "instrument_model", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "read_group_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_strategy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "spike_ins_concentration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "adapter_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "includes_spike_ins", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "read_length", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "experiment_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "spike_ins_fasta", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "target_capture_kit_vendor", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "target_capture_kit_catalog_number", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "sequencing_center", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "read_groups", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "read_group", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "analyte_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_aliquot", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "concentration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "aliquot_volume", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "aliquot_quantity", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "analyte_type_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "amount", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "source_center", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "aliquots", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "aliquot", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_format", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_size", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "error_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "object_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_submitted_copy_number", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state_comment", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "md5sum", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_category", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "experimental_strategy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_read_groups_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_format", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_size", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "error_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "object_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_submitted_copy_number", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state_comment", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "md5sum", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_category", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "experimental_strategy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_aliquots_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", + "name": "committable", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_dry_run", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "committed_by", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "entities", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "program", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "closed", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "related_cases", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_transaction_logs_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", + "name": "committable", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_dry_run", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "committed_by", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "entities", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "program", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "closed", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "related_cases", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_transaction_logs", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TransactionLog", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": "10", + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "submitted_copy_number", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "description": null, + "name": "library_name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_paired_end", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "size_selection_range", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "adapter_sequence", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_strand", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_preparation_kit_name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "base_caller_version", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "target_capture_kit_name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "includes_spike_ins", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_preparation_kit_version", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "barcoding_applied", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "target_capture_kit_vendor", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "sequencing_date", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "spike_ins_fasta", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "to_trim_adapter_sequence", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "RIN", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "platform", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "spike_ins_concentration", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_selection", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_preparation_kit_catalog_number", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "target_capture_kit_target_region", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "target_capture_kit_version", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "read_group_name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_preparation_kit_vendor", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_strategy", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "target_capture_kit_catalog_number", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "instrument_model", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "base_caller_name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "read_length", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "experiment_name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "flow_cell_barcode", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "sequencing_center", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "adapter_name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_read_group", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "created_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "updated_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "aliquot_quantity", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "aliquot_volume", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "source_center", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "analyte_type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "submitter_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "amount", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "concentration", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "analyte_type_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_format", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_size", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "error_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "object_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_submitted_copy_number", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state_comment", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "md5sum", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_category", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "experimental_strategy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "submitted_copy_number_files", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "submitted_copy_number", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "library_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_paired_end", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "adapter_sequence", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_strand", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_preparation_kit_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "base_caller_version", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "target_capture_kit_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_preparation_kit_vendor", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "base_caller_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "size_selection_range", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_preparation_kit_version", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "sequencing_date", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "to_trim_adapter_sequence", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "RIN", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "platform", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "flow_cell_barcode", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "barcoding_applied", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_selection", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_preparation_kit_catalog_number", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "target_capture_kit_target_region", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "target_capture_kit_version", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_read_group", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "instrument_model", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "read_group_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_strategy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "spike_ins_concentration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "adapter_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "includes_spike_ins", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "read_length", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "experiment_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "spike_ins_fasta", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "target_capture_kit_vendor", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "target_capture_kit_catalog_number", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "sequencing_center", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "read_groups", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "read_group", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "error_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_format", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_size", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "assay_instrument_model", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "object_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "assay_method", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_submitted_methylation", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state_comment", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "md5sum", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_category", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "assay_instrument", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "submitted_methylation_files", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "submitted_methylation", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "sample_type_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "biospecimen_anatomic_site", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "oct_embedded", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "tumor_code_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "intermediate_dimension", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "sample_volume", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_ffpe", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "tumor_descriptor", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "sample_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "time_between_excision_and_freezing", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "shortest_dimension", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "diagnosis_pathologically_confirmed", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "current_weight", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "composition", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "time_between_clamping_and_freezing", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "method_of_sample_procurement", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "tumor_code", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "tissue_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_sample", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_sample_procurement", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "freezing_method", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "preservation_method", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_collection", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "initial_weight", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "longest_dimension", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "samples", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "sample", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "analyte_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_aliquot", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "concentration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "aliquot_volume", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "aliquot_quantity", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "analyte_type_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "amount", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "source_center", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_submitted_copy_number_files_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "analyte_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_aliquot", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "concentration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "aliquot_volume", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "aliquot_quantity", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "analyte_type_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "amount", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "source_center", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_read_groups_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "analyte_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_aliquot", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "concentration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "aliquot_volume", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "aliquot_quantity", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "analyte_type_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "amount", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "source_center", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_submitted_methylation_files_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "analyte_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_aliquot", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "concentration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "aliquot_volume", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "aliquot_quantity", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "analyte_type_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "amount", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "source_center", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_samples_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", + "name": "committable", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_dry_run", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "committed_by", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "entities", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "program", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "closed", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "related_cases", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_transaction_logs_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", + "name": "committable", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_dry_run", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "committed_by", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "entities", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "program", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "closed", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "related_cases", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_transaction_logs", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TransactionLog", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": "10", + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "aliquot", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "description": null, + "name": "md5sum", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "error_type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_format", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "object_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_category", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_size", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "state_comment", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "experimental_strategy", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_submitted_copy_number", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "created_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "updated_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "assay_method", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "data_type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "assay_instrument_model", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "file_name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "error_type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "data_format", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "object_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "submitter_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "data_category", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "file_size", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "md5sum", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "state_comment", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "file_state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "assay_instrument", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "analyte_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_aliquot", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "concentration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "aliquot_volume", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "aliquot_quantity", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "analyte_type_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "amount", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "source_center", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "aliquots", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "aliquot", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "error_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_format", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_size", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "assay_instrument_model", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "object_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "assay_method", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_submitted_methylation", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state_comment", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "md5sum", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_category", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "assay_instrument", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_aliquots_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", + "name": "committable", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_dry_run", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "committed_by", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "entities", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "program", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "closed", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "related_cases", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_transaction_logs_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", + "name": "committable", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_dry_run", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "committed_by", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "entities", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "program", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "closed", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "related_cases", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_transaction_logs", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TransactionLog", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": "10", + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "submitted_methylation", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "description": null, + "name": "aliquot_quantity", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "aliquot_volume", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "source_center", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "analyte_type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "amount", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "concentration", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "analyte_type_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_aliquot", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "description": null, + "name": "assay_method", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "assay_instrument_model", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "error_type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_format", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "object_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_category", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_size", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "md5sum", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "state_comment", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "assay_instrument", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_submitted_methylation", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "description": null, + "name": "sample_type_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "biospecimen_anatomic_site", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "oct_embedded", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "tumor_code_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "intermediate_dimension", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "sample_volume", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "time_between_clamping_and_freezing", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "tumor_descriptor", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "sample_type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "time_between_excision_and_freezing", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "diagnosis_pathologically_confirmed", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "current_weight", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "composition", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_ffpe", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "shortest_dimension", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "method_of_sample_procurement", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "tumor_code", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "tissue_type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_sample_procurement", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "freezing_method", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "preservation_method", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_collection", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "initial_weight", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "longest_dimension", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_sample", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "description": null, + "name": "md5sum", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "error_type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_format", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "object_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_category", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_size", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "state_comment", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "experimental_strategy", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_submitted_aligned_reads", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "created_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "updated_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "md5sum", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "data_type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "file_name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "error_type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "data_format", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "object_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "submitter_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "data_category", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "file_size", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "state_comment", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "total_variants", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "file_state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "experimental_strategy", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "library_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_paired_end", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "adapter_sequence", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_strand", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_preparation_kit_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "base_caller_version", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "target_capture_kit_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_preparation_kit_vendor", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "base_caller_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "size_selection_range", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_preparation_kit_version", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "sequencing_date", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "to_trim_adapter_sequence", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "RIN", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "platform", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "flow_cell_barcode", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "barcoding_applied", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_selection", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_preparation_kit_catalog_number", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "target_capture_kit_target_region", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "target_capture_kit_version", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_read_group", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "instrument_model", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "read_group_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_strategy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "spike_ins_concentration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "adapter_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "includes_spike_ins", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "read_length", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "experiment_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "spike_ins_fasta", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "target_capture_kit_vendor", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "target_capture_kit_catalog_number", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "sequencing_center", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "read_groups", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "read_group", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_format", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_size", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "error_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "object_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "total_variants", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_submitted_somatic_mutation", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state_comment", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "md5sum", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_category", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "experimental_strategy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_read_groups_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", + "name": "committable", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_dry_run", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "committed_by", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "entities", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "program", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "closed", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "related_cases", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_transaction_logs_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", + "name": "committable", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_dry_run", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "committed_by", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "entities", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "program", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "closed", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "related_cases", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_transaction_logs", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TransactionLog", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": "10", + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "submitted_somatic_mutation", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "description": null, + "name": "md5sum", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "error_type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_format", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "object_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_category", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_size", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "state_comment", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "total_variants", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "experimental_strategy", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_submitted_somatic_mutation", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "created_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "updated_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "percent_aligned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "encoding", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "sequence_duplication_levels", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "submitter_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "basic_statistics", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "per_base_sequence_content", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "kmer_content", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "percent_gc_content", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "workflow_type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "per_sequence_gc_content", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "per_base_n_content", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "workflow_end_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "adapter_content", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "per_base_sequence_quality", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "fastq_name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "workflow_link", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "total_sequences", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "total_aligned_reads", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "sequence_length_distribution", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "per_sequence_quality_score", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "per_tile_sequence_quality", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "overrepresented_sequences", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "workflow_start_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "workflow_version", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "library_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_paired_end", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "adapter_sequence", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_strand", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_preparation_kit_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "base_caller_version", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "target_capture_kit_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_preparation_kit_vendor", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "base_caller_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "size_selection_range", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_preparation_kit_version", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "sequencing_date", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "to_trim_adapter_sequence", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "RIN", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "platform", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "flow_cell_barcode", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "barcoding_applied", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_selection", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_preparation_kit_catalog_number", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "target_capture_kit_target_region", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "target_capture_kit_version", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_read_group", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "instrument_model", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "read_group_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_strategy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "spike_ins_concentration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "adapter_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "includes_spike_ins", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "read_length", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "experiment_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "spike_ins_fasta", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "target_capture_kit_vendor", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "target_capture_kit_catalog_number", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "sequencing_center", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "read_groups", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "read_group", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_format", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_size", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "error_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "object_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_submitted_aligned_reads", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state_comment", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "md5sum", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_category", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "experimental_strategy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "submitted_aligned_reads_files", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "submitted_aligned_reads", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_format", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_size", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "error_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "object_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_submitted_unaligned_reads", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state_comment", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "md5sum", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_category", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "experimental_strategy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "submitted_unaligned_reads_files", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "submitted_unaligned_reads", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "percent_aligned", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "encoding", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "sequence_duplication_levels", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "basic_statistics", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "per_base_sequence_content", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "kmer_content", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_gc_content", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "per_tile_sequence_quality", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "workflow_link", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "per_sequence_gc_content", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "per_base_n_content", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "adapter_content", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "workflow_end_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "per_base_sequence_quality", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "fastq_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_read_group_qc", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "total_sequences", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "total_aligned_reads", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "sequence_length_distribution", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "per_sequence_quality_score", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "workflow_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "overrepresented_sequences", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "workflow_start_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "workflow_version", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_read_groups_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "percent_aligned", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "encoding", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "sequence_duplication_levels", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "basic_statistics", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "per_base_sequence_content", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "kmer_content", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_gc_content", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "per_tile_sequence_quality", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "workflow_link", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "per_sequence_gc_content", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "per_base_n_content", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "adapter_content", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "workflow_end_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "per_base_sequence_quality", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "fastq_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_read_group_qc", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "total_sequences", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "total_aligned_reads", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "sequence_length_distribution", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "per_sequence_quality_score", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "workflow_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "overrepresented_sequences", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "workflow_start_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "workflow_version", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_submitted_aligned_reads_files_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "percent_aligned", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "encoding", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "sequence_duplication_levels", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "basic_statistics", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "per_base_sequence_content", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "kmer_content", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_gc_content", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "per_tile_sequence_quality", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "workflow_link", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "per_sequence_gc_content", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "per_base_n_content", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "adapter_content", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "workflow_end_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "per_base_sequence_quality", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "fastq_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_read_group_qc", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "total_sequences", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "total_aligned_reads", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "sequence_length_distribution", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "per_sequence_quality_score", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "workflow_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "overrepresented_sequences", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "workflow_start_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "workflow_version", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_submitted_unaligned_reads_files_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", + "name": "committable", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_dry_run", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "committed_by", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "entities", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "program", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "closed", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "related_cases", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_transaction_logs_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", + "name": "committable", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_dry_run", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "committed_by", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "entities", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "program", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "closed", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "related_cases", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_transaction_logs", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TransactionLog", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": "10", + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "read_group_qc", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "created_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "updated_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "md5sum", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "data_type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "file_name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "error_type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "data_format", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "object_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "submitter_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "data_category", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "file_size", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "state_comment", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "file_state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "experimental_strategy", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "library_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_paired_end", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "adapter_sequence", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_strand", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_preparation_kit_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "base_caller_version", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "target_capture_kit_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_preparation_kit_vendor", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "base_caller_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "size_selection_range", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_preparation_kit_version", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "sequencing_date", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "to_trim_adapter_sequence", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "RIN", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "platform", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "flow_cell_barcode", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "barcoding_applied", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_selection", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_preparation_kit_catalog_number", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "target_capture_kit_target_region", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "target_capture_kit_version", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_read_group", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "instrument_model", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "read_group_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_strategy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "spike_ins_concentration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "adapter_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "includes_spike_ins", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "read_length", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "experiment_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "spike_ins_fasta", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "target_capture_kit_vendor", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "target_capture_kit_catalog_number", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "sequencing_center", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "read_groups", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "read_group", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "percent_aligned", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "encoding", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "sequence_duplication_levels", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "basic_statistics", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "per_base_sequence_content", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "kmer_content", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_gc_content", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "per_tile_sequence_quality", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "workflow_link", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "per_sequence_gc_content", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "per_base_n_content", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "adapter_content", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "workflow_end_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "per_base_sequence_quality", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "fastq_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_read_group_qc", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "total_sequences", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "total_aligned_reads", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "sequence_length_distribution", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "per_sequence_quality_score", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "workflow_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "overrepresented_sequences", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "workflow_start_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "workflow_version", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "read_group_qcs", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "read_group_qc", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "creator", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_core_metadata_collection", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "relation", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "contributor", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "subject", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "title", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "format", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "source", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "description", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "coverage", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "date", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "language", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "rights", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "publisher", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "core_metadata_collections", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "core_metadata_collection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_format", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_size", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "error_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "object_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_submitted_unaligned_reads", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state_comment", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "md5sum", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_category", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "experimental_strategy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_read_groups_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_format", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_size", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "error_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "object_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_submitted_unaligned_reads", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state_comment", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "md5sum", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_category", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "experimental_strategy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_read_group_qcs_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_format", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_size", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "error_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "object_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_submitted_unaligned_reads", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state_comment", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "md5sum", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_category", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "experimental_strategy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_core_metadata_collections_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", + "name": "committable", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_dry_run", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "committed_by", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "entities", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "program", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "closed", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "related_cases", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_transaction_logs_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", + "name": "committable", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_dry_run", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "committed_by", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "entities", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "program", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "closed", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "related_cases", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_transaction_logs", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TransactionLog", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": "10", + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "submitted_unaligned_reads", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "description": null, + "name": "percent_aligned", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "encoding", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "sequence_duplication_levels", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "basic_statistics", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "per_base_sequence_content", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "kmer_content", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_gc_content", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "workflow_type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "per_sequence_gc_content", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "per_base_n_content", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "workflow_end_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "adapter_content", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "per_base_sequence_quality", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "fastq_name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "workflow_link", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "total_sequences", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "total_aligned_reads", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "sequence_length_distribution", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "per_sequence_quality_score", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "per_tile_sequence_quality", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "overrepresented_sequences", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "workflow_start_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "workflow_version", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_read_group_qc", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "description": null, + "name": "publisher", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "language", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "rights", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "description", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "creator", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "format", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "date", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "relation", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "source", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "coverage", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "contributor", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "title", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "subject", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_core_metadata_collection", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "description": null, + "name": "md5sum", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "error_type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_format", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "object_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_category", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_size", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "state_comment", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "experimental_strategy", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_submitted_unaligned_reads", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "created_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "updated_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "md5sum", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "data_type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "file_name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "error_type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "data_format", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "object_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "submitter_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "data_category", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "file_size", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "state_comment", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "file_state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_format", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_size", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "error_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "object_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_submitted_aligned_reads", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state_comment", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "md5sum", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_category", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "experimental_strategy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "submitted_aligned_reads_files", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "submitted_aligned_reads", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "creator", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_core_metadata_collection", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "relation", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "contributor", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "subject", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "title", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "format", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "source", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "description", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "coverage", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "date", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "language", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "rights", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "publisher", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "core_metadata_collections", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "core_metadata_collection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_format", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_size", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "error_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "object_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_aligned_reads_index", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state_comment", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "md5sum", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_category", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_submitted_aligned_reads_files_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_format", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_size", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "error_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "object_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_aligned_reads_index", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state_comment", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "md5sum", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_category", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_core_metadata_collections_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", + "name": "committable", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_dry_run", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "committed_by", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "entities", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "program", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "closed", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "related_cases", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_transaction_logs_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", + "name": "committable", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_dry_run", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "committed_by", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "entities", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "program", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "closed", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "related_cases", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_transaction_logs", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TransactionLog", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": "10", + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "aligned_reads_index", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "description": null, + "name": "md5sum", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "error_type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_format", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "object_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_category", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_size", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "state_comment", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_aligned_reads_index", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_size", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "run_name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "protocol_used", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "cell_type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "error_type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "object_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "panel_used", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "experimental_strategy", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "cell_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "state_comment", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "frame_identifier", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "cell_identifier", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "md5sum", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_format", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_category", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_slide_image", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "created_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "updated_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "date_collected", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "code", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "support_source", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "intended_release_date", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "investigator_affiliation", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "availability_mechanism", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "support_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "releasable", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "released", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "availability_type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "investigator_name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "dbgap_accession_number", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "dbgap_accession_number", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_program", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "programs", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "program", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "creator", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_core_metadata_collection", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "relation", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "contributor", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "subject", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "title", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "format", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "source", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "description", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "coverage", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "date", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "language", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "rights", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "publisher", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "core_metadata_collections", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "core_metadata_collection", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "type_of_sample", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "somatic_mutations_identified", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "marker_panel_description", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "experimental_intent", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "type_of_specimen", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "type_of_data", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "associated_experiment", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "copy_numbers_identified", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_experiment", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "number_samples_per_experimental_group", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "number_experimental_group", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_description", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "indels_identified", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "experimental_description", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "experiments", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "experiment", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "doi", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_publication", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "pmid", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "publications", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "publication", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "keyword_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_keyword", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "keywords", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "keyword", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "acknowledgee", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_acknowledgement", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "acknowledgements", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "acknowledgement", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "code", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "releasable", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "availability_mechanism", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "dbgap_accession_number", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "investigator_affiliation", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "support_source", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "investigator_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "date_collected", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "intended_release_date", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "support_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "released", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "availability_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_project", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_programs_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "code", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "releasable", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "availability_mechanism", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "dbgap_accession_number", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "investigator_affiliation", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "support_source", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "investigator_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "date_collected", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "intended_release_date", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "support_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "released", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "availability_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_project", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_core_metadata_collections_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "code", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "releasable", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "availability_mechanism", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "dbgap_accession_number", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "investigator_affiliation", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "support_source", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "investigator_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "date_collected", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "intended_release_date", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "support_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "released", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "availability_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_project", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_experiments_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "code", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "releasable", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "availability_mechanism", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "dbgap_accession_number", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "investigator_affiliation", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "support_source", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "investigator_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "date_collected", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "intended_release_date", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "support_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "released", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "availability_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_project", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_publications_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "code", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "releasable", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "availability_mechanism", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "dbgap_accession_number", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "investigator_affiliation", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "support_source", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "investigator_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "date_collected", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "intended_release_date", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "support_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "released", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "availability_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_project", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_keywords_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "code", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "releasable", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "availability_mechanism", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "dbgap_accession_number", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "investigator_affiliation", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "support_source", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "investigator_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "date_collected", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "intended_release_date", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "support_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "released", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "availability_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_project", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_acknowledgements_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", + "name": "committable", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_dry_run", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "committed_by", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "entities", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "program", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "closed", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "related_cases", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_transaction_logs_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", + "name": "committable", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_dry_run", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "committed_by", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "entities", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "program", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "closed", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "related_cases", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_transaction_logs", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TransactionLog", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": "10", + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "project", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "created_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "updated_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "dbgap_accession_number", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "code", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "releasable", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "availability_mechanism", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "dbgap_accession_number", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "investigator_affiliation", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "support_source", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "investigator_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "date_collected", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "intended_release_date", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "support_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "released", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "availability_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_project", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "projects", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "project", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "dbgap_accession_number", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_program", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_projects_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", + "name": "committable", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_dry_run", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "committed_by", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "entities", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "program", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "closed", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "related_cases", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_transaction_logs_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", + "name": "committable", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_dry_run", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "committed_by", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "entities", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "program", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "closed", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "related_cases", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_transaction_logs", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TransactionLog", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": "10", + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "program", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "description": null, + "name": "date_collected", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "code", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "support_source", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "intended_release_date", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "investigator_affiliation", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "availability_mechanism", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "support_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "releasable", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "released", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "availability_type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "investigator_name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "dbgap_accession_number", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_project", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "description": null, + "name": "dbgap_accession_number", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_program", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "description": null, + "name": "associated_experiment", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "copy_numbers_identified", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "number_samples_per_experimental_group", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "indels_identified", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "marker_panel_description", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "number_experimental_group", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "experimental_intent", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "type_of_sample", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_description", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "type_of_data", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "somatic_mutations_identified", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "type_of_specimen", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "experimental_description", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_experiment", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "created_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "updated_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "doi", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "submitter_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "pmid", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "code", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "releasable", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "availability_mechanism", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "dbgap_accession_number", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "investigator_affiliation", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "support_source", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "investigator_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "date_collected", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "intended_release_date", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "support_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "released", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "availability_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_project", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "projects", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "project", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "doi", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_publication", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "pmid", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_projects_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", + "name": "committable", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_dry_run", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "committed_by", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "entities", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "program", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "closed", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "related_cases", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_transaction_logs_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", + "name": "committable", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_dry_run", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "committed_by", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "entities", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "program", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "closed", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "related_cases", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_transaction_logs", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TransactionLog", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": "10", + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "publication", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "description": null, + "name": "doi", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "pmid", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_publication", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "created_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "updated_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "keyword_name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "submitter_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "code", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "releasable", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "availability_mechanism", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "dbgap_accession_number", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "investigator_affiliation", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "support_source", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "investigator_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "date_collected", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "intended_release_date", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "support_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "released", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "availability_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_project", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "projects", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "project", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "keyword_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_keyword", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_projects_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", + "name": "committable", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_dry_run", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "committed_by", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "entities", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "program", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "closed", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "related_cases", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_transaction_logs_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", + "name": "committable", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_dry_run", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "committed_by", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "entities", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "program", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "closed", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "related_cases", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_transaction_logs", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TransactionLog", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": "10", + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "keyword", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "keyword_name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_keyword", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "created_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "updated_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "acknowledgee", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "submitter_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "code", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "releasable", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "availability_mechanism", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "dbgap_accession_number", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "investigator_affiliation", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "support_source", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "investigator_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "date_collected", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "intended_release_date", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "support_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "released", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "availability_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_project", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "projects", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "project", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "acknowledgee", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_acknowledgement", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_projects_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", + "name": "committable", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_dry_run", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "committed_by", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "entities", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "program", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "closed", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "related_cases", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_transaction_logs_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", + "name": "committable", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_dry_run", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "committed_by", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "entities", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "program", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "closed", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "related_cases", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_transaction_logs", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TransactionLog", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": "10", + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "acknowledgement", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "acknowledgee", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_acknowledgement", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "created_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "updated_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "her2_erbb2_result_ihc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "submitter_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "fev1_fvc_pre_bronch_percent", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "fev1_ref_post_bronch_percent", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "fev1_fvc_post_bronch_percent", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "dlco_ref_predictive_percent", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "her2_erbb2_percent_positive_ihc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "biomarker_test_method", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "ldh_level_at_diagnosis", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "progesterone_receptor_percent_positive_ihc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "cea_level_preoperative", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "biomarker_name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "progesterone_receptor_result_ihc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "biomarker_result", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "estrogen_receptor_percent_positive_ihc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "ldh_normal_range_upper", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "estrogen_receptor_result_ihc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "fev1_ref_pre_bronch_percent", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "her2_erbb2_result_fish", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "microsatellite_instability_abnormal", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_case", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "disease_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "primary_site", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "cases", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "case", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "year_of_diagnosis", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "method_of_diagnosis", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "laterality", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ann_arbor_pathologic_stage", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "vital_status", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "morphology", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ann_arbor_clinical_stage", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_last_known_disease_status", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "perineural_invasion_present", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_hiv_diagnosis", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_pathologic_m", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_last_follow_up", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "prior_treatment", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_clinical_t", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "colon_polyps_history", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_pathologic_n", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_clinical_n", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_clinical_m", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ldh_level_at_diagnosis", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "residual_disease", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_pathologic_stage", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "lymphatic_invasion_present", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "progression_or_recurrence", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_diagnosis", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "cause_of_death", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "burkitt_lymphoma_clinical_variant", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ann_arbor_extranodal_involvement", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_clinical_stage", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "hiv_positive", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ann_arbor_b_symptoms", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "classification_of_tumor", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "last_known_disease_status", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "primary_diagnosis", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "tumor_stage", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "age_at_diagnosis", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "hpv_positive_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_death", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "vascular_invasion_present", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "new_event_anatomic_site", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_recurrence", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "tumor_grade", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "figo_stage", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "tissue_or_organ_of_origin", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_birth", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "hpv_status", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "prior_malignancy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "new_event_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_new_event", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "circumferential_resection_margin", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ldh_normal_range_upper", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "lymph_nodes_positive", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "site_of_resection_or_biopsy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_pathologic_t", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "diagnoses", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "diagnosis", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "her2_erbb2_result_ihc", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ldh_level_at_diagnosis", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "biomarker_result", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "fev1_fvc_pre_bronch_percent", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "fev1_ref_post_bronch_percent", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "dlco_ref_predictive_percent", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "her2_erbb2_percent_positive_ihc", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "biomarker_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "fev1_fvc_post_bronch_percent", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "cea_level_preoperative", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "biomarker_test_method", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "progesterone_receptor_result_ihc", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_clinical_test", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "estrogen_receptor_percent_positive_ihc", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ldh_normal_range_upper", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "estrogen_receptor_result_ihc", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "fev1_ref_pre_bronch_percent", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "her2_erbb2_result_fish", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "microsatellite_instability_abnormal", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "progesterone_receptor_percent_positive_ihc", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_cases_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "her2_erbb2_result_ihc", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ldh_level_at_diagnosis", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "biomarker_result", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "fev1_fvc_pre_bronch_percent", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "fev1_ref_post_bronch_percent", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "dlco_ref_predictive_percent", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "her2_erbb2_percent_positive_ihc", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "biomarker_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "fev1_fvc_post_bronch_percent", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "cea_level_preoperative", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "biomarker_test_method", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "progesterone_receptor_result_ihc", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_clinical_test", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "estrogen_receptor_percent_positive_ihc", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ldh_normal_range_upper", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "estrogen_receptor_result_ihc", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "fev1_ref_pre_bronch_percent", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "her2_erbb2_result_fish", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "microsatellite_instability_abnormal", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "progesterone_receptor_percent_positive_ihc", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_diagnoses_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", + "name": "committable", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_dry_run", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "committed_by", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "entities", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "program", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "closed", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "related_cases", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_transaction_logs_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", + "name": "committable", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_dry_run", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "committed_by", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "entities", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "program", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "closed", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "related_cases", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_transaction_logs", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TransactionLog", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": "10", + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "clinical_test", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "description": null, + "name": "her2_erbb2_result_ihc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "fev1_fvc_pre_bronch_percent", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "fev1_ref_post_bronch_percent", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "fev1_fvc_post_bronch_percent", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "dlco_ref_predictive_percent", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "her2_erbb2_percent_positive_ihc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "biomarker_test_method", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ldh_level_at_diagnosis", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "progesterone_receptor_percent_positive_ihc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "cea_level_preoperative", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "biomarker_name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "progesterone_receptor_result_ihc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "biomarker_result", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "estrogen_receptor_percent_positive_ihc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ldh_normal_range_upper", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "estrogen_receptor_result_ihc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "fev1_ref_pre_bronch_percent", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "her2_erbb2_result_fish", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "microsatellite_instability_abnormal", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_clinical_test", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "created_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "updated_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "gender", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "year_of_birth", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "submitter_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "race", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "ethnicity", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "year_of_death", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_case", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "disease_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "primary_site", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "cases", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "case", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "race", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "year_of_birth", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "year_of_death", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_demographic", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "gender", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ethnicity", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_cases_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", + "name": "committable", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_dry_run", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "committed_by", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "entities", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "program", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "closed", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "related_cases", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_transaction_logs_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", + "name": "committable", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_dry_run", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "committed_by", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "entities", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "program", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "closed", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "related_cases", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_transaction_logs", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TransactionLog", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": "10", + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "demographic", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "gender", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "year_of_birth", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "race", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ethnicity", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "year_of_death", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_demographic", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "created_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "updated_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "relationship_gender", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "relative_with_cancer_history", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "relationship_age_at_diagnosis", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "submitter_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "relationship_type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "relationship_primary_diagnosis", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_case", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "disease_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "primary_site", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "cases", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "case", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "relationship_gender", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_family_history", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "relationship_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "relative_with_cancer_history", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "relationship_primary_diagnosis", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "relationship_age_at_diagnosis", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_cases_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", + "name": "committable", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_dry_run", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "committed_by", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "entities", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "program", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "closed", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "related_cases", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_transaction_logs_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", + "name": "committable", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_dry_run", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "committed_by", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "entities", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "program", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "closed", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "related_cases", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_transaction_logs", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TransactionLog", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": "10", + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "family_history", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "description": null, + "name": "relationship_gender", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "relative_with_cancer_history", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "relationship_age_at_diagnosis", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "relationship_type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "relationship_primary_diagnosis", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_family_history", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "created_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "updated_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "cigarettes_per_day", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "weight", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "alcohol_history", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "alcohol_intensity", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "bmi", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "years_smoked", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "height", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "submitter_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "tobacco_smoking_status", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "tobacco_smoking_onset_year", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "tobacco_smoking_quit_year", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "pack_years_smoked", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_case", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "disease_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "primary_site", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "cases", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "case", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "cigarettes_per_day", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "years_smoked", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "height", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "tobacco_smoking_status", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "pack_years_smoked", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "weight", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "tobacco_smoking_onset_year", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "alcohol_history", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "bmi", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_exposure", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "alcohol_intensity", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "tobacco_smoking_quit_year", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_cases_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", + "name": "committable", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_dry_run", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "committed_by", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "entities", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "program", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "closed", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "related_cases", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_transaction_logs_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", + "name": "committable", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_dry_run", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "committed_by", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "entities", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "program", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "closed", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "related_cases", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_transaction_logs", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TransactionLog", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": "10", + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "exposure", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "description": null, + "name": "cigarettes_per_day", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "weight", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "alcohol_history", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "alcohol_intensity", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "bmi", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "years_smoked", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "height", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "tobacco_smoking_status", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "tobacco_smoking_onset_year", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "tobacco_smoking_quit_year", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "pack_years_smoked", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_exposure", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "description": null, + "name": "md5sum", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "error_type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_format", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "object_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_category", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_size", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "state_comment", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_experimental_metadata", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "created_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "updated_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "release_date", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "major_version", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "minor_version", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "released", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "schema_version", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_root", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "roots", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "root", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "major_version", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "released", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_data_release", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "release_date", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "minor_version", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_roots_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", + "name": "committable", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_dry_run", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "committed_by", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "entities", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "program", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "closed", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "related_cases", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_transaction_logs_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", + "name": "committable", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_dry_run", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "committed_by", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "entities", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "program", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "closed", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "related_cases", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_transaction_logs", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TransactionLog", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": "10", + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "data_release", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "created_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "updated_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "schema_version", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "major_version", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "released", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_data_release", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "release_date", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "minor_version", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "data_releases", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "data_release", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "schema_version", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_root", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_data_releases_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", + "name": "committable", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_dry_run", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "committed_by", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "entities", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "program", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "closed", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "related_cases", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_transaction_logs_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", + "name": "committable", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_dry_run", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "committed_by", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "entities", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "program", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "closed", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "related_cases", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_transaction_logs", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TransactionLog", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": "10", + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "root", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "release_date", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "major_version", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "minor_version", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "released", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_data_release", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "md5sum", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "data_type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "updated_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "created_datetime", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "file_name", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "error_type", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "data_format", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "object_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "submitter_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "data_category", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "state_comment", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "file_state", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "file_size", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "DataNode", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": [ + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "of_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": "10", + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "node", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_format", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_size", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "error_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "object_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_experimental_metadata", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state_comment", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "md5sum", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_category", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "experimental_metadata", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "experimental_metadata", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_format", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_size", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "error_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "object_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_experimental_metadata", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state_comment", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "md5sum", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_category", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_experimental_metadata_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_format", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_size", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "error_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "object_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "total_variants", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_submitted_somatic_mutation", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state_comment", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "md5sum", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_category", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "experimental_strategy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "submitted_somatic_mutation", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "submitted_somatic_mutation", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_format", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_size", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "error_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "object_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "total_variants", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_submitted_somatic_mutation", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state_comment", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "md5sum", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_category", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "experimental_strategy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_submitted_somatic_mutation_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "percent_aligned", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "encoding", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "sequence_duplication_levels", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "basic_statistics", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "per_base_sequence_content", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "kmer_content", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_gc_content", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "per_tile_sequence_quality", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "workflow_link", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "per_sequence_gc_content", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "per_base_n_content", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "adapter_content", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "workflow_end_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "per_base_sequence_quality", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "fastq_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_read_group_qc", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "total_sequences", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "total_aligned_reads", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "sequence_length_distribution", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "per_sequence_quality_score", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "workflow_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "overrepresented_sequences", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "workflow_start_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "workflow_version", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "read_group_qc", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "read_group_qc", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "percent_aligned", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "encoding", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "sequence_duplication_levels", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "basic_statistics", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "per_base_sequence_content", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "kmer_content", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "percent_gc_content", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "per_tile_sequence_quality", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "workflow_link", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "per_sequence_gc_content", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "per_base_n_content", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "adapter_content", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "workflow_end_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "per_base_sequence_quality", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "fastq_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_read_group_qc", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "total_sequences", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "total_aligned_reads", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "sequence_length_distribution", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "per_sequence_quality_score", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "workflow_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "overrepresented_sequences", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "workflow_start_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "workflow_version", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_read_group_qc_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_format", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_size", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "error_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "object_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_submitted_copy_number", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state_comment", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "md5sum", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_category", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "experimental_strategy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "submitted_copy_number", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "submitted_copy_number", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_format", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_size", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "error_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "object_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_submitted_copy_number", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state_comment", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "md5sum", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_category", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "experimental_strategy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_submitted_copy_number_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "major_version", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "released", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_data_release", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "release_date", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "minor_version", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "data_release", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "data_release", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "major_version", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "released", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_data_release", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "release_date", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "minor_version", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_data_release_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "doi", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_publication", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "pmid", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "publication", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "publication", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "doi", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_publication", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "pmid", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_publication_count", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - }, - "defaultValue": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "dbgap_accession_number", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_program", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "program", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "program", + "ofType": null + } + } }, { - "name": "verification_date", + "args": [ + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "dbgap_accession_number", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_program", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, "description": null, + "isDeprecated": false, + "name": "_program_count", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_open_access_doc", - "description": null, - "fields": null, - "inputFields": [ + } + }, { - "name": "created_datetime", + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "acknowledgee", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_acknowledgement", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "deprecationReason": null, "description": null, + "isDeprecated": false, + "name": "acknowledgement", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "acknowledgement", + "ofType": null + } + } }, { - "name": "data_category", + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "acknowledgee", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_acknowledgement", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "deprecationReason": null, "description": null, + "isDeprecated": false, + "name": "_acknowledgement_count", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - }, - "defaultValue": null + } }, { - "name": "data_format", + "args": [ + { + "defaultValue": null, + "description": null, + "name": "library_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_paired_end", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "adapter_sequence", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_strand", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_preparation_kit_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "base_caller_version", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "target_capture_kit_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_preparation_kit_vendor", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "base_caller_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "size_selection_range", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_preparation_kit_version", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "sequencing_date", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "to_trim_adapter_sequence", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "RIN", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "platform", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "flow_cell_barcode", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "barcoding_applied", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_selection", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_preparation_kit_catalog_number", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "target_capture_kit_target_region", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "target_capture_kit_version", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_read_group", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "instrument_model", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "read_group_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_strategy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "spike_ins_concentration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "adapter_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "includes_spike_ins", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "read_length", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "experiment_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "spike_ins_fasta", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "target_capture_kit_vendor", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "target_capture_kit_catalog_number", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "sequencing_center", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, "description": null, + "isDeprecated": false, + "name": "read_group", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "read_group", + "ofType": null + } + } }, { - "name": "data_type", + "args": [ + { + "defaultValue": null, + "description": null, + "name": "library_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "is_paired_end", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "adapter_sequence", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_strand", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_preparation_kit_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "base_caller_version", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "target_capture_kit_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_preparation_kit_vendor", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "base_caller_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "size_selection_range", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_preparation_kit_version", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "sequencing_date", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "to_trim_adapter_sequence", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "RIN", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "platform", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "flow_cell_barcode", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "barcoding_applied", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_selection", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_preparation_kit_catalog_number", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "target_capture_kit_target_region", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "target_capture_kit_version", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_read_group", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "instrument_model", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "read_group_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "library_strategy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "spike_ins_concentration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "adapter_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "includes_spike_ins", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "read_length", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "experiment_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "spike_ins_fasta", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "target_capture_kit_vendor", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "target_capture_kit_catalog_number", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "sequencing_center", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, "description": null, + "isDeprecated": false, + "name": "_read_group_count", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - }, - "defaultValue": null + } }, { - "name": "doc_url", + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_treatment", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "treatment_outcome", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "treatment_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "treatment_intent_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "treatment_or_therapy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "therapeutic_agents", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_treatment", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "treatment_anatomic_site", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_treatment_end", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_treatment_start", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, "description": null, + "isDeprecated": false, + "name": "treatment", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "treatment", + "ofType": null + } + } }, { - "name": "error_type", + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_treatment", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "treatment_outcome", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "treatment_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "treatment_intent_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "treatment_or_therapy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "therapeutic_agents", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_treatment", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "treatment_anatomic_site", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_treatment_end", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_treatment_start", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, "description": null, + "isDeprecated": false, + "name": "_treatment_count", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - }, - "defaultValue": null + } }, { - "name": "file_name", + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "biomarker_signal", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "run_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "cell_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "relative_nuclear_size", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "er_localization", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "relative_er_intensity", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ck_signal", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "relative_nuclear_intensity", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "cell_count", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_slide_count", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "relative_cytokeratin_intensity", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "frame_identifier", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "cell_identifier", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, "description": null, + "isDeprecated": false, + "name": "slide_count", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "slide_count", + "ofType": null + } + } }, { - "name": "file_size", + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "biomarker_signal", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "run_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "cell_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "relative_nuclear_size", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "er_localization", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "relative_er_intensity", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ck_signal", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "relative_nuclear_intensity", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "cell_count", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_slide_count", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "relative_cytokeratin_intensity", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "frame_identifier", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "cell_identifier", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, "description": null, + "isDeprecated": false, + "name": "_slide_count_count", "type": { "kind": "SCALAR", - "name": "Float", + "name": "Int", "ofType": null - }, - "defaultValue": null + } }, { - "name": "file_state", + "args": [ + { + "defaultValue": null, + "description": null, + "name": "year_of_diagnosis", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "method_of_diagnosis", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "laterality", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ann_arbor_pathologic_stage", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "vital_status", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "morphology", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ann_arbor_clinical_stage", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_last_known_disease_status", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "perineural_invasion_present", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_hiv_diagnosis", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_pathologic_m", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_last_follow_up", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "prior_treatment", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_clinical_t", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "colon_polyps_history", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_pathologic_n", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_clinical_n", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_clinical_m", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ldh_level_at_diagnosis", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "residual_disease", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_pathologic_stage", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "lymphatic_invasion_present", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "progression_or_recurrence", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_diagnosis", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "cause_of_death", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "burkitt_lymphoma_clinical_variant", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ann_arbor_extranodal_involvement", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_clinical_stage", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "hiv_positive", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ann_arbor_b_symptoms", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "classification_of_tumor", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "last_known_disease_status", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "primary_diagnosis", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "tumor_stage", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "age_at_diagnosis", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "hpv_positive_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_death", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "vascular_invasion_present", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "new_event_anatomic_site", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_recurrence", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "tumor_grade", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "figo_stage", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "tissue_or_organ_of_origin", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_birth", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "hpv_status", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "prior_malignancy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "new_event_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_new_event", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "circumferential_resection_margin", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ldh_normal_range_upper", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "lymph_nodes_positive", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "site_of_resection_or_biopsy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_pathologic_t", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, "description": null, + "isDeprecated": false, + "name": "diagnosis", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "diagnosis", + "ofType": null + } + } }, { - "name": "md5sum", + "args": [ + { + "defaultValue": null, + "description": null, + "name": "year_of_diagnosis", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "method_of_diagnosis", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "laterality", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ann_arbor_pathologic_stage", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "vital_status", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "morphology", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ann_arbor_clinical_stage", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_last_known_disease_status", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "perineural_invasion_present", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_hiv_diagnosis", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_pathologic_m", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_last_follow_up", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "prior_treatment", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_clinical_t", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "colon_polyps_history", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_pathologic_n", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_clinical_n", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_clinical_m", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ldh_level_at_diagnosis", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "residual_disease", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_pathologic_stage", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "lymphatic_invasion_present", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "progression_or_recurrence", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_diagnosis", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "cause_of_death", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "burkitt_lymphoma_clinical_variant", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ann_arbor_extranodal_involvement", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_clinical_stage", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "hiv_positive", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ann_arbor_b_symptoms", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "classification_of_tumor", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "last_known_disease_status", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "primary_diagnosis", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "tumor_stage", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "age_at_diagnosis", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "hpv_positive_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_death", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "vascular_invasion_present", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "new_event_anatomic_site", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_recurrence", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "tumor_grade", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "figo_stage", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "tissue_or_organ_of_origin", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_birth", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "hpv_status", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "prior_malignancy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "new_event_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "days_to_new_event", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "circumferential_resection_margin", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ldh_normal_range_upper", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "lymph_nodes_positive", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "site_of_resection_or_biopsy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ajcc_pathologic_t", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, "description": null, + "isDeprecated": false, + "name": "_diagnosis_count", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - }, - "defaultValue": null + } }, { - "name": "object_id", + "args": [ + { + "defaultValue": null, + "description": null, + "name": "cigarettes_per_day", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "years_smoked", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "height", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "tobacco_smoking_status", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "pack_years_smoked", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "weight", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "tobacco_smoking_onset_year", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "alcohol_history", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "bmi", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_exposure", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "alcohol_intensity", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "tobacco_smoking_quit_year", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, "description": null, + "isDeprecated": false, + "name": "exposure", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "exposure", + "ofType": null + } + } }, { - "name": "project_id", + "args": [ + { + "defaultValue": null, + "description": null, + "name": "cigarettes_per_day", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "years_smoked", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "height", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "tobacco_smoking_status", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "pack_years_smoked", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "weight", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "tobacco_smoking_onset_year", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "alcohol_history", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "bmi", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_exposure", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "alcohol_intensity", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "tobacco_smoking_quit_year", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, "description": null, + "isDeprecated": false, + "name": "_exposure_count", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - }, - "defaultValue": null + } }, { - "name": "state", + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_case", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "disease_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "primary_site", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "deprecationReason": null, "description": null, + "isDeprecated": false, + "name": "case", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "case", + "ofType": null + } + } }, { - "name": "submitter_id", + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_case", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "disease_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "primary_site", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "deprecationReason": null, "description": null, + "isDeprecated": false, + "name": "_case_count", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - }, - "defaultValue": null + } }, { - "name": "updated_datetime", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "clinical_trial_file", - "description": null, - "fields": [ - { - "name": "id", + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_format", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_size", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "error_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "object_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_submitted_aligned_reads", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state_comment", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "md5sum", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_category", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "experimental_strategy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "submitter_id", - "description": null, - "args": [], + "name": "submitted_aligned_reads", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "submitted_aligned_reads", + "ofType": null + } + } }, { - "name": "type", + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_format", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_size", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "error_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "object_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_submitted_aligned_reads", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state_comment", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "md5sum", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_category", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "experimental_strategy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "project_id", - "description": null, - "args": [], + "name": "_submitted_aligned_reads_count", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, { - "name": "created_datetime", + "args": [ + { + "defaultValue": null, + "description": null, + "name": "code", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "releasable", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "availability_mechanism", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "dbgap_accession_number", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "investigator_affiliation", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "support_source", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "investigator_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "date_collected", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "intended_release_date", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "support_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "released", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "availability_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_project", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_datetime", - "description": null, - "args": [], + "name": "project", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "project", + "ofType": null + } + } }, { - "name": "data_category", + "args": [ + { + "defaultValue": null, + "description": null, + "name": "code", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "releasable", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "availability_mechanism", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "dbgap_accession_number", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "investigator_affiliation", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "support_source", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "investigator_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "date_collected", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "intended_release_date", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "support_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "released", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "availability_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_project", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data_format", - "description": null, - "args": [], + "name": "_project_count", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, { - "name": "data_type", + "args": [ + { + "defaultValue": null, + "description": null, + "name": "race", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "year_of_birth", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "year_of_death", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_demographic", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "gender", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ethnicity", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "deprecationReason": null, "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "error_type", - "description": null, - "args": [], + "name": "demographic", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "demographic", + "ofType": null + } + } }, { - "name": "file_name", + "args": [ + { + "defaultValue": null, + "description": null, + "name": "race", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "year_of_birth", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "year_of_death", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_demographic", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "gender", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "ethnicity", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "deprecationReason": null, "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "file_size", - "description": null, - "args": [], + "name": "_demographic_count", "type": { "kind": "SCALAR", - "name": "Float", + "name": "Int", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, { - "name": "file_state", + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "analyte_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_aliquot", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "concentration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "aliquot_volume", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "aliquot_quantity", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "analyte_type_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "amount", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "source_center", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "deprecationReason": null, "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "md5sum", - "description": null, - "args": [], + "name": "aliquot", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "aliquot", + "ofType": null + } + } }, { - "name": "object_id", + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "analyte_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_aliquot", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "concentration", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "aliquot_volume", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "aliquot_quantity", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "analyte_type_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "amount", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "source_center", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "deprecationReason": null, "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "state", - "description": null, - "args": [], + "name": "_aliquot_count", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, { - "name": "core_metadata_collections", - "description": null, "args": [ { - "name": "id", + "defaultValue": null, + "description": null, + "name": "error_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, "description": null, + "name": "order_by_asc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "submitter_id", + "defaultValue": null, "description": null, + "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -27798,12 +154353,26 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "ids", + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, "description": null, + "name": "data_format", "type": { "kind": "LIST", "name": null, @@ -27812,102 +154381,451 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "quick_search", + "defaultValue": null, + "description": null, + "name": "file_size", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, "description": null, + "name": "created_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "first", + "defaultValue": null, "description": null, + "name": "id", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "offset", + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "assay_instrument_model", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "object_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, "description": null, + "name": "created_after", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "created_before", + "defaultValue": null, + "description": null, + "name": "file_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, "description": null, + "name": "order_by_desc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "created_after", + "defaultValue": null, + "description": null, + "name": "project_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "assay_method", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, "description": null, + "name": "updated_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "updated_before", + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, "description": null, + "name": "offset", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - }, - "defaultValue": null + } }, { - "name": "updated_after", + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_submitted_methylation", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state_comment", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, "description": null, + "name": "quick_search", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "order_by_asc", + "defaultValue": null, + "description": null, + "name": "md5sum", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, "description": null, + "name": "updated_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_category", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "assay_instrument", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "submitted_methylation", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "submitted_methylation", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "error_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "order_by_desc", + "defaultValue": null, "description": null, + "name": "order_by_asc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "with_links", + "defaultValue": null, "description": null, + "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -27916,26 +154834,26 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_links_any", + "defaultValue": null, "description": null, + "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "without_links", + "defaultValue": null, "description": null, + "name": "data_format", "type": { "kind": "LIST", "name": null, @@ -27944,40 +154862,46 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to", + "defaultValue": null, "description": null, + "name": "file_size", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "Int", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to_any", + "defaultValue": null, "description": null, + "name": "created_before", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "without_path_to", + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "with_path_to", "type": { "kind": "LIST", "name": null, @@ -27986,12 +154910,12 @@ "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "accepts_healthy_volunteers", + "defaultValue": null, "description": null, + "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -28000,12 +154924,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "actual_enrollment", + "defaultValue": null, "description": null, + "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -28014,12 +154938,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "arm", + "defaultValue": null, "description": null, + "name": "assay_instrument_model", "type": { "kind": "LIST", "name": null, @@ -28028,12 +154952,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "arm_description", + "defaultValue": null, "description": null, + "name": "object_id", "type": { "kind": "LIST", "name": null, @@ -28042,12 +154966,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "arm_name", + "defaultValue": null, "description": null, + "name": "state", "type": { "kind": "LIST", "name": null, @@ -28056,26 +154980,22 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "arm_type", + "defaultValue": null, "description": null, + "name": "created_after", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "brief_summary", + "defaultValue": null, "description": null, + "name": "file_name", "type": { "kind": "LIST", "name": null, @@ -28084,12 +155004,22 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "brief_title", + "defaultValue": null, "description": null, + "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -28098,12 +155028,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "category", + "defaultValue": null, "description": null, + "name": "file_state", "type": { "kind": "LIST", "name": null, @@ -28112,12 +155042,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "clinical_trial_website", + "defaultValue": null, "description": null, + "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -28126,12 +155056,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "collaborators", + "defaultValue": null, "description": null, + "name": "assay_method", "type": { "kind": "LIST", "name": null, @@ -28140,12 +155070,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "condition", + "defaultValue": null, "description": null, + "name": "data_type", "type": { "kind": "LIST", "name": null, @@ -28154,26 +155084,36 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "contact", + "defaultValue": null, "description": null, + "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "contributor", + "defaultValue": null, "description": null, + "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -28182,26 +155122,36 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "coverage", + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_submitted_methylation", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "created_datetime", + "defaultValue": null, "description": null, + "name": "submitter_id", "type": { "kind": "LIST", "name": null, @@ -28210,12 +155160,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "creator", + "defaultValue": null, "description": null, + "name": "state_comment", "type": { "kind": "LIST", "name": null, @@ -28224,12 +155174,22 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "data_availability_date", + "defaultValue": null, "description": null, + "name": "md5sum", "type": { "kind": "LIST", "name": null, @@ -28238,12 +155198,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_available", + "defaultValue": null, "description": null, + "name": "ids", "type": { "kind": "LIST", "name": null, @@ -28252,26 +155212,36 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "data_available_for_request", + "defaultValue": null, "description": null, + "name": "data_category", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_category", + "defaultValue": null, "description": null, + "name": "assay_instrument", "type": { "kind": "LIST", "name": null, @@ -28280,12 +155250,35 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_format", + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_submitted_methylation_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, "description": null, + "name": "her2_erbb2_result_ihc", "type": { "kind": "LIST", "name": null, @@ -28294,12 +155287,22 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_type", + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -28308,40 +155311,40 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "description", + "defaultValue": null, "description": null, + "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "eligibility_criteria", + "defaultValue": null, "description": null, + "name": "ldh_level_at_diagnosis", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "enrollment", + "defaultValue": null, "description": null, + "name": "submitter_id", "type": { "kind": "LIST", "name": null, @@ -28350,12 +155353,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "fda_regulated_device_product", + "defaultValue": null, "description": null, + "name": "biomarker_result", "type": { "kind": "LIST", "name": null, @@ -28364,54 +155367,74 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "fda_regulated_drug_product", + "defaultValue": null, "description": null, + "name": "fev1_fvc_pre_bronch_percent", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "first_posted_date", + "defaultValue": null, "description": null, + "name": "fev1_ref_post_bronch_percent", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "focus", + "defaultValue": null, "description": null, + "name": "with_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "has_data_monitoring_committee", + "defaultValue": null, "description": null, + "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -28420,26 +155443,26 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "intervention_type", + "defaultValue": null, "description": null, + "name": "dlco_ref_predictive_percent", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "ipd_sharing_statement", + "defaultValue": null, "description": null, + "name": "her2_erbb2_percent_positive_ihc", "type": { "kind": "LIST", "name": null, @@ -28448,12 +155471,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "language", + "defaultValue": null, "description": null, + "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -28462,12 +155485,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "last_update_posted_date", + "defaultValue": null, "description": null, + "name": "biomarker_name", "type": { "kind": "LIST", "name": null, @@ -28476,12 +155499,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "location", + "defaultValue": null, "description": null, + "name": "state", "type": { "kind": "LIST", "name": null, @@ -28490,26 +155513,46 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "locations_removed", + "defaultValue": null, "description": null, + "name": "fev1_fvc_post_bronch_percent", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "nct_number", + "defaultValue": null, "description": null, + "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -28518,12 +155561,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "original_estimated_enrollment", + "defaultValue": null, "description": null, + "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -28532,26 +155575,36 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "primary_completion_date", + "defaultValue": null, "description": null, + "name": "cea_level_preoperative", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "principle_investigator", + "defaultValue": null, "description": null, + "name": "biomarker_test_method", "type": { "kind": "LIST", "name": null, @@ -28560,26 +155613,26 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "project_id", + "defaultValue": null, "description": null, + "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "prs_account", + "defaultValue": null, "description": null, + "name": "progesterone_receptor_result_ihc", "type": { "kind": "LIST", "name": null, @@ -28588,12 +155641,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "publications", + "defaultValue": null, "description": null, + "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -28602,26 +155655,36 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "publisher", + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_clinical_test", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "recruitment_status", + "defaultValue": null, "description": null, + "name": "estrogen_receptor_percent_positive_ihc", "type": { "kind": "LIST", "name": null, @@ -28630,26 +155693,36 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "responsible_party", + "defaultValue": null, "description": null, + "name": "ldh_normal_range_upper", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "rights", + "defaultValue": null, "description": null, + "name": "estrogen_receptor_result_ihc", "type": { "kind": "LIST", "name": null, @@ -28658,26 +155731,26 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "secondary_id", + "defaultValue": null, "description": null, + "name": "fev1_ref_pre_bronch_percent", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "source", + "defaultValue": null, "description": null, + "name": "ids", "type": { "kind": "LIST", "name": null, @@ -28686,12 +155759,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "state", + "defaultValue": null, "description": null, + "name": "her2_erbb2_result_fish", "type": { "kind": "LIST", "name": null, @@ -28700,12 +155773,22 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "study_completion_date", + "defaultValue": null, "description": null, + "name": "microsatellite_instability_abnormal", "type": { "kind": "LIST", "name": null, @@ -28714,12 +155797,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "study_design_allocation", + "defaultValue": null, "description": null, + "name": "progesterone_receptor_percent_positive_ihc", "type": { "kind": "LIST", "name": null, @@ -28728,12 +155811,39 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "study_design_intervention_model", + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "clinical_test", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "clinical_test", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, "description": null, + "name": "her2_erbb2_result_ihc", "type": { "kind": "LIST", "name": null, @@ -28742,12 +155852,22 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "study_design_masking", + "defaultValue": null, "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -28756,40 +155876,40 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "study_design_primary_purpose", + "defaultValue": null, "description": null, + "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "study_phase", + "defaultValue": null, "description": null, + "name": "ldh_level_at_diagnosis", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "study_start_date", + "defaultValue": null, "description": null, + "name": "submitter_id", "type": { "kind": "LIST", "name": null, @@ -28798,12 +155918,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "subject", + "defaultValue": null, "description": null, + "name": "biomarker_result", "type": { "kind": "LIST", "name": null, @@ -28812,54 +155932,74 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "submitted_date", + "defaultValue": null, "description": null, + "name": "fev1_fvc_pre_bronch_percent", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "title", + "defaultValue": null, "description": null, + "name": "fev1_ref_post_bronch_percent", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "updated_datetime", + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "with_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "us_product", + "defaultValue": null, "description": null, + "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -28868,67 +156008,40 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "verification_date", + "defaultValue": null, "description": null, + "name": "dlco_ref_predictive_percent", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "not", + "defaultValue": null, "description": null, + "name": "her2_erbb2_percent_positive_ihc", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_core_metadata_collection", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "core_metadata_collection", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_core_metadata_collections_count", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + } }, { - "name": "submitter_id", + "defaultValue": null, "description": null, + "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -28937,12 +156050,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "ids", + "defaultValue": null, "description": null, + "name": "biomarker_name", "type": { "kind": "LIST", "name": null, @@ -28951,102 +156064,60 @@ "name": "String", "ofType": null } - }, - "defaultValue": null - }, - { - "name": "quick_search", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + } }, { - "name": "updated_before", + "defaultValue": null, "description": null, + "name": "state", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "updated_after", + "defaultValue": null, "description": null, + "name": "fev1_fvc_post_bronch_percent", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } }, { - "name": "order_by_asc", + "defaultValue": null, "description": null, + "name": "created_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "order_by_desc", + "defaultValue": null, "description": null, + "name": "order_by_desc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "with_links", + "defaultValue": null, "description": null, + "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -29055,12 +156126,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_links_any", + "defaultValue": null, "description": null, + "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -29069,54 +156140,50 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "without_links", + "defaultValue": null, "description": null, + "name": "cea_level_preoperative", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to", + "defaultValue": null, "description": null, + "name": "updated_before", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "with_path_to_any", + "defaultValue": null, "description": null, + "name": "biomarker_test_method", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "without_path_to", + "defaultValue": null, "description": null, + "name": "without_path_to", "type": { "kind": "LIST", "name": null, @@ -29125,12 +156192,12 @@ "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "created_datetime", + "defaultValue": null, "description": null, + "name": "progesterone_receptor_result_ihc", "type": { "kind": "LIST", "name": null, @@ -29139,12 +156206,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_category", + "defaultValue": null, "description": null, + "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -29153,26 +156220,36 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_format", + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_clinical_test", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_type", + "defaultValue": null, "description": null, + "name": "estrogen_receptor_percent_positive_ihc", "type": { "kind": "LIST", "name": null, @@ -29181,26 +156258,36 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "error_type", + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "ldh_normal_range_upper", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "file_name", + "defaultValue": null, "description": null, + "name": "estrogen_receptor_result_ihc", "type": { "kind": "LIST", "name": null, @@ -29209,12 +156296,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "file_size", + "defaultValue": null, "description": null, + "name": "fev1_ref_pre_bronch_percent", "type": { "kind": "LIST", "name": null, @@ -29223,12 +156310,12 @@ "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "file_state", + "defaultValue": null, "description": null, + "name": "ids", "type": { "kind": "LIST", "name": null, @@ -29237,12 +156324,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "md5sum", + "defaultValue": null, "description": null, + "name": "her2_erbb2_result_fish", "type": { "kind": "LIST", "name": null, @@ -29251,12 +156338,22 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "object_id", + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "microsatellite_instability_abnormal", "type": { "kind": "LIST", "name": null, @@ -29265,12 +156362,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "project_id", + "defaultValue": null, "description": null, + "name": "progesterone_receptor_percent_positive_ihc", "type": { "kind": "LIST", "name": null, @@ -29279,12 +156376,35 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "state", + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_clinical_test_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, "description": null, + "name": "type_of_sample", "type": { "kind": "LIST", "name": null, @@ -29293,12 +156413,22 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "updated_datetime", + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -29307,69 +156437,68 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "not", + "defaultValue": null, "description": null, + "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_clinical_trial_file", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null - } - ], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_transaction_logs_count", - "description": null, - "args": [ + } + }, { - "name": "id", + "defaultValue": null, "description": null, + "name": "somatic_mutations_identified", "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } }, { - "name": "type", + "defaultValue": null, "description": null, + "name": "marker_panel_description", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "quick_search", + "defaultValue": null, "description": null, + "name": "submitter_id", "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "project_id", + "defaultValue": null, "description": null, + "name": "experimental_intent", "type": { "kind": "LIST", "name": null, @@ -29378,96 +156507,102 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "project", + "defaultValue": null, "description": null, + "name": "type_of_specimen", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "program", + "defaultValue": null, "description": null, + "name": "type_of_data", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "order_by_asc", + "defaultValue": null, "description": null, + "name": "created_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "order_by_desc", + "defaultValue": null, "description": null, + "name": "id", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "related_cases", + "defaultValue": null, "description": null, + "name": "with_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + } }, { - "name": "last", + "defaultValue": null, "description": null, + "name": "without_links", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "offset", + "defaultValue": null, "description": null, + "name": "created_datetime", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "entities", + "defaultValue": null, "description": null, + "name": "state", "type": { "kind": "LIST", "name": null, @@ -29476,105 +156611,98 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "is_dry_run", + "defaultValue": null, "description": null, + "name": "created_after", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "closed", + "defaultValue": null, "description": null, + "name": "order_by_desc", "type": { "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "committable", - "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", - "type": { - "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "state", + "defaultValue": null, "description": null, + "name": "project_id", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "committed_by", + "defaultValue": null, "description": null, + "name": "with_links_any", "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_transaction_logs", - "description": null, - "args": [ + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, { - "name": "id", + "defaultValue": null, "description": null, + "name": "associated_experiment", "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "type", + "defaultValue": null, "description": null, + "name": "updated_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "quick_search", + "defaultValue": null, "description": null, + "name": "without_path_to", "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } }, { - "name": "project_id", + "defaultValue": null, "description": null, + "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -29583,96 +156711,116 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "project", + "defaultValue": null, "description": null, + "name": "copy_numbers_identified", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } }, { - "name": "program", + "defaultValue": null, "description": null, + "name": "offset", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - }, - "defaultValue": null + } }, { - "name": "order_by_asc", + "defaultValue": null, "description": null, + "name": "not", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_experiment", + "ofType": null + } + } }, { - "name": "order_by_desc", + "defaultValue": null, "description": null, + "name": "number_samples_per_experimental_group", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } }, { - "name": "related_cases", + "defaultValue": null, "description": null, + "name": "number_experimental_group", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "first", + "defaultValue": null, "description": null, + "name": "quick_search", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "last", + "defaultValue": null, "description": null, + "name": "data_description", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "offset", + "defaultValue": null, "description": null, + "name": "indels_identified", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } }, { - "name": "entities", + "defaultValue": null, "description": null, + "name": "ids", "type": { "kind": "LIST", "name": null, @@ -29681,707 +156829,295 @@ "name": "String", "ofType": null } - }, - "defaultValue": null - }, - { - "name": "is_dry_run", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null + } }, { - "name": "closed", + "defaultValue": null, "description": null, + "name": "updated_after", "type": { "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "committable", - "description": "(committable: true) means (is_dry_run: true) AND (closed: false) AND (state: \"SUCCEEDED\") AND (committed_by is None). Note: committed_by is None cannot be represented in GraphQL, hence this argument.", - "type": { - "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "state", + "defaultValue": null, "description": null, + "name": "experimental_description", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "committed_by", + "defaultValue": null, "description": null, + "name": "first", "type": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null - }, - "defaultValue": null + } } ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "experiment", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "OBJECT", - "name": "TransactionLog", + "name": "experiment", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null + } }, { - "name": "_links", - "description": null, "args": [ { - "name": "id", + "defaultValue": null, + "description": null, + "name": "type_of_sample", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, "description": null, + "name": "order_by_asc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "submitter_id", + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, "description": null, + "name": "with_path_to_any", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } }, { - "name": "ids", + "defaultValue": null, "description": null, + "name": "somatic_mutations_identified", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "quick_search", + "defaultValue": null, "description": null, + "name": "marker_panel_description", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "first", + "defaultValue": null, "description": null, + "name": "submitter_id", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "10" + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "offset", + "defaultValue": null, "description": null, + "name": "experimental_intent", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "created_before", + "defaultValue": null, "description": null, + "name": "type_of_specimen", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "created_after", + "defaultValue": null, "description": null, + "name": "type_of_data", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "updated_before", + "defaultValue": null, "description": null, + "name": "created_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "updated_after", + "defaultValue": null, "description": null, + "name": "id", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "order_by_asc", + "defaultValue": null, "description": null, + "name": "with_path_to", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } }, { - "name": "order_by_desc", + "defaultValue": null, "description": null, + "name": "without_links", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "project_id", + "defaultValue": null, "description": null, + "name": "created_datetime", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "category", + "defaultValue": null, "description": null, + "name": "state", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DataNode", - "description": null, - "fields": [ - { - "name": "created_datetime", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data_category", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data_format", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data_type", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "error_type", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "file_name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "file_size", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "file_state", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "md5sum", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "object_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "project_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "state", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "submitter_id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_datetime", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "NodeType", - "description": null, - "fields": [ - { - "name": "title", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "constraints", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "systemProperties", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "project", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "required", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "program", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "submittable", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "validators", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "namespace", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "uniqueKeys", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "root", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "links", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "category", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "additionalProperties", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "properties", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "viewer", - "description": null, - "fields": [ - { - "name": "node", - "description": null, - "args": [ + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, { - "name": "id", + "defaultValue": null, "description": null, + "name": "created_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "submitter_id", + "defaultValue": null, "description": null, + "name": "order_by_desc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "ids", + "defaultValue": null, "description": null, + "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -30390,102 +157126,447 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "quick_search", + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "associated_experiment", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, "description": null, + "name": "updated_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "first", + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "copy_numbers_identified", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, "description": null, + "name": "offset", "type": { "kind": "SCALAR", "name": "Int", "ofType": null - }, - "defaultValue": "10" + } }, { - "name": "offset", + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_experiment", + "ofType": null + } + } + }, + { + "defaultValue": null, "description": null, + "name": "number_samples_per_experimental_group", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "number_experimental_group", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "created_before", + "defaultValue": null, + "description": null, + "name": "data_description", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "indels_identified", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, "description": null, + "name": "updated_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "created_after", + "defaultValue": null, + "description": null, + "name": "experimental_description", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_experiment_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, "description": null, + "name": "order_by_asc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "updated_before", + "defaultValue": null, + "description": null, + "name": "updated_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, "description": null, + "name": "data_format", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "file_size", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "updated_after", + "defaultValue": null, "description": null, + "name": "id", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "order_by_asc", + "defaultValue": null, + "description": null, + "name": "with_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_datetime", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "error_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "object_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, "description": null, + "name": "state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "order_by_desc", + "defaultValue": null, "description": null, + "name": "file_name", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "of_type", + "defaultValue": null, "description": null, + "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -30494,69 +157575,192 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "project_id", + "defaultValue": null, + "description": null, + "name": "file_state", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links_any", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_type", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, "description": null, + "name": "updated_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_links", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "category", + "defaultValue": null, "description": null, + "name": "offset", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "data_release", - "description": null, - "args": [ + } + }, { - "name": "id", + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_submitted_unaligned_reads", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "submitter_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "state_comment", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, "description": null, + "name": "quick_search", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "submitter_id", + "defaultValue": null, + "description": null, + "name": "md5sum", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "ids", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, "description": null, + "name": "updated_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "ids", + "defaultValue": null, "description": null, + "name": "data_category", "type": { "kind": "LIST", "name": null, @@ -30565,116 +157769,153 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "quick_search", + "defaultValue": null, "description": null, + "name": "experimental_strategy", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "first", + "defaultValue": null, "description": null, + "name": "first", "type": { "kind": "SCALAR", "name": "Int", "ofType": null - }, - "defaultValue": null - }, + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "submitted_unaligned_reads", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "submitted_unaligned_reads", + "ofType": null + } + } + }, + { + "args": [ { - "name": "offset", + "defaultValue": null, "description": null, + "name": "order_by_asc", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "created_before", + "defaultValue": null, "description": null, + "name": "updated_datetime", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "created_after", + "defaultValue": null, "description": null, + "name": "with_path_to_any", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } }, { - "name": "updated_before", + "defaultValue": null, "description": null, + "name": "data_format", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "updated_after", + "defaultValue": null, "description": null, + "name": "file_size", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } }, { - "name": "order_by_asc", + "defaultValue": null, "description": null, + "name": "created_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "order_by_desc", + "defaultValue": null, "description": null, + "name": "id", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "with_links", + "defaultValue": null, "description": null, + "name": "with_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_links_any", + "defaultValue": null, "description": null, + "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -30683,12 +157924,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "without_links", + "defaultValue": null, "description": null, + "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -30697,54 +157938,64 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to", + "defaultValue": null, "description": null, + "name": "error_type", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to_any", + "defaultValue": null, "description": null, + "name": "object_id", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "without_path_to", + "defaultValue": null, "description": null, + "name": "state", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "created_datetime", + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "file_name", "type": { "kind": "LIST", "name": null, @@ -30753,40 +158004,50 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "major_version", + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "project_id", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "minor_version", + "defaultValue": null, "description": null, + "name": "file_state", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "name", + "defaultValue": null, "description": null, + "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -30795,12 +158056,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "release_date", + "defaultValue": null, "description": null, + "name": "data_type", "type": { "kind": "LIST", "name": null, @@ -30809,26 +158070,36 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "released", + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "updated_datetime", + "defaultValue": null, "description": null, + "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -30837,63 +158108,50 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "not", + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_data_release", + "name": "NotPropertiesInput_submitted_unaligned_reads", "ofType": null } - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "data_release", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_data_release_count", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + } }, { - "name": "submitter_id", + "defaultValue": null, "description": null, + "name": "submitter_id", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "ids", + "defaultValue": null, "description": null, + "name": "state_comment", "type": { "kind": "LIST", "name": null, @@ -30902,102 +158160,135 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "quick_search", + "defaultValue": null, "description": null, + "name": "quick_search", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "first", + "defaultValue": null, "description": null, + "name": "md5sum", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "offset", + "defaultValue": null, "description": null, + "name": "ids", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "created_before", + "defaultValue": null, "description": null, + "name": "updated_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "created_after", + "defaultValue": null, "description": null, + "name": "data_category", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "updated_before", + "defaultValue": null, "description": null, + "name": "experimental_strategy", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "updated_after", + "defaultValue": null, "description": null, + "name": "first", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - }, - "defaultValue": null - }, + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_submitted_unaligned_reads_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ { - "name": "order_by_asc", + "defaultValue": null, "description": null, + "name": "percent_tumor_nuclei", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } }, { - "name": "order_by_desc", + "defaultValue": null, "description": null, + "name": "order_by_asc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "with_links", + "defaultValue": null, "description": null, + "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -31006,26 +158297,26 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_links_any", + "defaultValue": null, "description": null, + "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "without_links", + "defaultValue": null, "description": null, + "name": "submitter_id", "type": { "kind": "LIST", "name": null, @@ -31034,82 +158325,102 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to", + "defaultValue": null, "description": null, + "name": "run_name", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to_any", + "defaultValue": null, "description": null, + "name": "percent_necrosis", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "without_path_to", + "defaultValue": null, "description": null, + "name": "percent_granulocyte_infiltration", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "created_datetime", + "defaultValue": null, "description": null, + "name": "percent_inflam_infiltration", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "major_version", + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "with_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "minor_version", + "defaultValue": null, "description": null, + "name": "apoptotic_concentration", "type": { "kind": "LIST", "name": null, @@ -31118,12 +158429,12 @@ "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "name", + "defaultValue": null, "description": null, + "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -31132,40 +158443,40 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "release_date", + "defaultValue": null, "description": null, + "name": "percent_normal_cells", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "released", + "defaultValue": null, "description": null, + "name": "ctc_concentration", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "updated_datetime", + "defaultValue": null, "description": null, + "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -31174,59 +158485,40 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "not", + "defaultValue": null, "description": null, + "name": "state", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_data_release", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null - } - ], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "root", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + } }, { - "name": "submitter_id", + "defaultValue": null, "description": null, + "name": "methanol_added", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } }, { - "name": "ids", + "defaultValue": null, "description": null, + "name": "section_location", "type": { "kind": "LIST", "name": null, @@ -31235,355 +158527,403 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "quick_search", + "defaultValue": null, "description": null, + "name": "created_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + } }, { - "name": "offset", + "defaultValue": null, "description": null, + "name": "ctc_low_concentration", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } }, { - "name": "created_before", + "defaultValue": null, "description": null, + "name": "order_by_desc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "created_after", + "defaultValue": null, "description": null, + "name": "number_proliferating_cells", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } }, { - "name": "updated_before", + "defaultValue": null, "description": null, + "name": "project_id", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "updated_after", + "defaultValue": null, "description": null, + "name": "ctc_small_concentration", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } }, { - "name": "order_by_asc", + "defaultValue": null, "description": null, + "name": "with_links_any", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "order_by_desc", + "defaultValue": null, "description": null, + "name": "updated_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "with_links", + "defaultValue": null, "description": null, + "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_links_any", + "defaultValue": null, "description": null, + "name": "percent_monocyte_infiltration", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "without_links", + "defaultValue": null, "description": null, + "name": "percent_lymphocyte_infiltration", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to", + "defaultValue": null, "description": null, + "name": "percent_neutrophil_infiltration", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to_any", + "defaultValue": null, "description": null, + "name": "with_links", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "without_path_to", + "defaultValue": null, "description": null, + "name": "run_datetime", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "schema_version", + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_slide", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "not", + "defaultValue": null, "description": null, + "name": "percent_stromal_cells", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_root", + "kind": "SCALAR", + "name": "Float", "ofType": null } - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "root", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_root_count", - "description": null, - "args": [ + } + }, { - "name": "id", + "defaultValue": null, "description": null, + "name": "quick_search", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "submitter_id", + "defaultValue": null, "description": null, + "name": "number_nucleated_cells", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } }, { - "name": "ids", + "defaultValue": null, "description": null, + "name": "percent_eosinophil_infiltration", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "quick_search", + "defaultValue": null, "description": null, + "name": "ids", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "first", + "defaultValue": null, "description": null, + "name": "slide_identifier", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "offset", + "defaultValue": null, "description": null, + "name": "updated_after", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "created_before", + "defaultValue": null, "description": null, + "name": "percent_tumor_cells", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } }, { - "name": "created_after", + "defaultValue": null, "description": null, + "name": "first", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - }, - "defaultValue": null - }, + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "slide", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "slide", + "ofType": null + } + } + }, + { + "args": [ { - "name": "updated_before", + "defaultValue": null, "description": null, + "name": "percent_tumor_nuclei", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } }, { - "name": "updated_after", + "defaultValue": null, "description": null, + "name": "order_by_asc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "order_by_asc", + "defaultValue": null, "description": null, + "name": "updated_datetime", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "order_by_desc", + "defaultValue": null, "description": null, + "name": "with_path_to_any", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } }, { - "name": "with_links", + "defaultValue": null, "description": null, + "name": "submitter_id", "type": { "kind": "LIST", "name": null, @@ -31592,12 +158932,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_links_any", + "defaultValue": null, "description": null, + "name": "run_name", "type": { "kind": "LIST", "name": null, @@ -31606,54 +158946,74 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "without_links", + "defaultValue": null, "description": null, + "name": "percent_necrosis", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to", + "defaultValue": null, "description": null, + "name": "percent_granulocyte_infiltration", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to_any", + "defaultValue": null, "description": null, + "name": "percent_inflam_infiltration", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "without_path_to", + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "with_path_to", "type": { "kind": "LIST", "name": null, @@ -31662,73 +159022,68 @@ "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "schema_version", + "defaultValue": null, "description": null, + "name": "apoptotic_concentration", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "not", + "defaultValue": null, "description": null, + "name": "without_links", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_root", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null - } - ], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "project", - "description": null, - "args": [ + } + }, { - "name": "id", + "defaultValue": null, "description": null, + "name": "percent_normal_cells", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } }, { - "name": "submitter_id", + "defaultValue": null, "description": null, + "name": "ctc_concentration", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } }, { - "name": "ids", + "defaultValue": null, "description": null, + "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -31737,116 +159092,102 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "quick_search", + "defaultValue": null, "description": null, + "name": "state", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "first", + "defaultValue": null, "description": null, + "name": "methanol_added", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } }, { - "name": "offset", + "defaultValue": null, "description": null, + "name": "section_location", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "created_before", + "defaultValue": null, "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { "name": "created_after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_before", - "description": null, "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "updated_after", + "defaultValue": null, "description": null, + "name": "ctc_low_concentration", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } }, { - "name": "order_by_asc", + "defaultValue": null, "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { "name": "order_by_desc", - "description": null, "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "with_links", + "defaultValue": null, "description": null, + "name": "number_proliferating_cells", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_links_any", + "defaultValue": null, "description": null, + "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -31855,54 +159196,50 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "without_links", + "defaultValue": null, "description": null, + "name": "ctc_small_concentration", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to", + "defaultValue": null, "description": null, + "name": "with_links_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to_any", + "defaultValue": null, "description": null, + "name": "updated_before", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "without_path_to", + "defaultValue": null, "description": null, + "name": "without_path_to", "type": { "kind": "LIST", "name": null, @@ -31911,54 +159248,54 @@ "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "administering_ic", + "defaultValue": null, "description": null, + "name": "percent_monocyte_infiltration", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "availability_mechanism", + "defaultValue": null, "description": null, + "name": "percent_lymphocyte_infiltration", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "availability_type", + "defaultValue": null, "description": null, + "name": "percent_neutrophil_infiltration", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "code", + "defaultValue": null, "description": null, + "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -31967,12 +159304,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_description", + "defaultValue": null, "description": null, + "name": "run_datetime", "type": { "kind": "LIST", "name": null, @@ -31981,68 +159318,88 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "date_collected", + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_slide", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "dbgap_accession_number", + "defaultValue": null, "description": null, + "name": "percent_stromal_cells", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "institution", + "defaultValue": null, "description": null, + "name": "number_nucleated_cells", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "intended_release_date", + "defaultValue": null, "description": null, + "name": "percent_eosinophil_infiltration", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "investigator", + "defaultValue": null, "description": null, + "name": "ids", "type": { "kind": "LIST", "name": null, @@ -32051,12 +159408,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "investigator_affiliation", + "defaultValue": null, "description": null, + "name": "slide_identifier", "type": { "kind": "LIST", "name": null, @@ -32065,40 +159422,93 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "investigator_name", + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "percent_tumor_cells", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_slide_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "location", + "defaultValue": null, "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "name", + "defaultValue": null, "description": null, + "name": "submitter_id", "type": { "kind": "LIST", "name": null, @@ -32107,12 +159517,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "project_title", + "defaultValue": null, "description": null, + "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -32121,68 +159531,94 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "releasable", + "defaultValue": null, "description": null, + "name": "keyword_name", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "released", + "defaultValue": null, "description": null, + "name": "offset", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, { - "name": "research_focus_area", + "defaultValue": null, "description": null, + "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_keyword", "ofType": null } - }, - "defaultValue": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "research_program", + "defaultValue": null, "description": null, + "name": "with_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "state", + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -32191,12 +159627,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "support_id", + "defaultValue": null, "description": null, + "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -32205,12 +159641,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "support_source", + "defaultValue": null, "description": null, + "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -32219,26 +159655,26 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "year_awarded", + "defaultValue": null, "description": null, + "name": "ids", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "project_id", + "defaultValue": null, "description": null, + "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -32247,167 +159683,145 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "not", + "defaultValue": null, "description": null, + "name": "state", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_project", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "project", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_project_count", - "description": null, - "args": [ + } + }, { - "name": "id", + "defaultValue": null, "description": null, + "name": "updated_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "submitter_id", + "defaultValue": null, "description": null, + "name": "created_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "ids", + "defaultValue": null, "description": null, + "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "quick_search", + "defaultValue": null, "description": null, + "name": "order_by_desc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "first", + "defaultValue": null, "description": null, + "name": "first", "type": { "kind": "SCALAR", "name": "Int", "ofType": null - }, - "defaultValue": null + } }, { - "name": "offset", + "defaultValue": null, "description": null, + "name": "with_links_any", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "keyword", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "keyword", + "ofType": null + } + } + }, + { + "args": [ { - "name": "created_before", + "defaultValue": null, "description": null, + "name": "order_by_asc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "created_after", + "defaultValue": null, "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { "name": "updated_before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by_asc", - "description": null, "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "order_by_desc", + "defaultValue": null, "description": null, + "name": "without_path_to", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } }, { - "name": "with_links", + "defaultValue": null, "description": null, + "name": "submitter_id", "type": { "kind": "LIST", "name": null, @@ -32416,12 +159830,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_links_any", + "defaultValue": null, "description": null, + "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -32430,12 +159844,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "without_links", + "defaultValue": null, "description": null, + "name": "keyword_name", "type": { "kind": "LIST", "name": null, @@ -32444,26 +159858,56 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to", + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "name": "NotPropertiesInput_keyword", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to_any", + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "with_path_to", "type": { "kind": "LIST", "name": null, @@ -32472,26 +159916,36 @@ "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "without_path_to", + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "without_links", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "administering_ic", + "defaultValue": null, "description": null, + "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -32500,12 +159954,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "availability_mechanism", + "defaultValue": null, "description": null, + "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -32514,12 +159968,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "availability_type", + "defaultValue": null, "description": null, + "name": "ids", "type": { "kind": "LIST", "name": null, @@ -32528,12 +159982,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "code", + "defaultValue": null, "description": null, + "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -32542,12 +159996,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_description", + "defaultValue": null, "description": null, + "name": "state", "type": { "kind": "LIST", "name": null, @@ -32556,26 +160010,66 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "date_collected", + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "dbgap_accession_number", + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -32584,12 +160078,35 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_keyword_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "institution", + "defaultValue": null, "description": null, + "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -32598,26 +160115,26 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "intended_release_date", + "defaultValue": null, "description": null, + "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "investigator", + "defaultValue": null, "description": null, + "name": "data_format", "type": { "kind": "LIST", "name": null, @@ -32626,40 +160143,60 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "investigator_affiliation", + "defaultValue": null, "description": null, + "name": "file_size", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "investigator_name", + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "with_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "location", + "defaultValue": null, "description": null, + "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -32668,12 +160205,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "name", + "defaultValue": null, "description": null, + "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -32682,12 +160219,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "project_title", + "defaultValue": null, "description": null, + "name": "error_type", "type": { "kind": "LIST", "name": null, @@ -32696,40 +160233,50 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "releasable", + "defaultValue": null, "description": null, + "name": "object_id", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "released", + "defaultValue": null, "description": null, + "name": "state", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null } - }, - "defaultValue": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "research_focus_area", + "defaultValue": null, "description": null, + "name": "file_name", "type": { "kind": "LIST", "name": null, @@ -32738,12 +160285,22 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "research_program", + "defaultValue": null, "description": null, + "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -32752,12 +160309,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "state", + "defaultValue": null, "description": null, + "name": "file_state", "type": { "kind": "LIST", "name": null, @@ -32766,12 +160323,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "support_id", + "defaultValue": null, "description": null, + "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -32780,12 +160337,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "support_source", + "defaultValue": null, "description": null, + "name": "data_type", "type": { "kind": "LIST", "name": null, @@ -32794,26 +160351,36 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "year_awarded", + "defaultValue": null, "description": null, + "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "project_id", + "defaultValue": null, "description": null, + "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -32822,49 +160389,36 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "not", + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_project", + "name": "NotPropertiesInput_aligned_reads_index", "ofType": null } - }, - "defaultValue": null - } - ], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "open_access_doc", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + } }, { - "name": "submitter_id", + "defaultValue": null, "description": null, + "name": "submitter_id", "type": { "kind": "LIST", "name": null, @@ -32873,12 +160427,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "ids", + "defaultValue": null, "description": null, + "name": "state_comment", "type": { "kind": "LIST", "name": null, @@ -32887,102 +160441,111 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "quick_search", + "defaultValue": null, "description": null, + "name": "quick_search", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + } }, { - "name": "created_before", + "defaultValue": null, "description": null, + "name": "md5sum", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "created_after", + "defaultValue": null, "description": null, + "name": "ids", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "updated_before", + "defaultValue": null, "description": null, + "name": "updated_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "updated_after", + "defaultValue": null, "description": null, + "name": "data_category", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "order_by_asc", + "defaultValue": null, "description": null, + "name": "first", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - }, - "defaultValue": null - }, + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "aligned_reads_index", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "aligned_reads_index", + "ofType": null + } + } + }, + { + "args": [ { - "name": "order_by_desc", + "defaultValue": null, "description": null, + "name": "order_by_asc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "with_links", + "defaultValue": null, "description": null, + "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -32991,26 +160554,26 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_links_any", + "defaultValue": null, "description": null, + "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "without_links", + "defaultValue": null, "description": null, + "name": "data_format", "type": { "kind": "LIST", "name": null, @@ -33019,40 +160582,46 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to", + "defaultValue": null, "description": null, + "name": "file_size", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "Int", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to_any", + "defaultValue": null, "description": null, + "name": "created_before", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "without_path_to", + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "with_path_to", "type": { "kind": "LIST", "name": null, @@ -33061,12 +160630,12 @@ "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "created_datetime", + "defaultValue": null, "description": null, + "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -33075,12 +160644,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_category", + "defaultValue": null, "description": null, + "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -33089,12 +160658,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_format", + "defaultValue": null, "description": null, + "name": "error_type", "type": { "kind": "LIST", "name": null, @@ -33103,12 +160672,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_type", + "defaultValue": null, "description": null, + "name": "object_id", "type": { "kind": "LIST", "name": null, @@ -33117,12 +160686,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "doc_url", + "defaultValue": null, "description": null, + "name": "state", "type": { "kind": "LIST", "name": null, @@ -33131,12 +160700,22 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "error_type", + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "file_name", "type": { "kind": "LIST", "name": null, @@ -33145,12 +160724,22 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "file_name", + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -33159,26 +160748,26 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "file_size", + "defaultValue": null, "description": null, + "name": "file_state", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "file_state", + "defaultValue": null, "description": null, + "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -33187,12 +160776,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "md5sum", + "defaultValue": null, "description": null, + "name": "data_type", "type": { "kind": "LIST", "name": null, @@ -33201,26 +160790,36 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "object_id", + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "project_id", + "defaultValue": null, "description": null, + "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -33229,26 +160828,36 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "state", + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_aligned_reads_index", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "updated_datetime", + "defaultValue": null, "description": null, + "name": "submitter_id", "type": { "kind": "LIST", "name": null, @@ -33257,53 +160866,36 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "not", + "defaultValue": null, "description": null, + "name": "state_comment", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_open_access_doc", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "open_access_doc", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_open_access_doc_count", - "description": null, - "args": [ + } + }, { - "name": "id", + "defaultValue": null, "description": null, + "name": "quick_search", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "submitter_id", + "defaultValue": null, "description": null, + "name": "md5sum", "type": { "kind": "LIST", "name": null, @@ -33312,12 +160904,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "ids", + "defaultValue": null, "description": null, + "name": "ids", "type": { "kind": "LIST", "name": null, @@ -33326,102 +160918,69 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "quick_search", + "defaultValue": null, "description": null, + "name": "updated_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "first", + "defaultValue": null, "description": null, + "name": "data_category", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "offset", + "defaultValue": null, "description": null, + "name": "first", "type": { "kind": "SCALAR", "name": "Int", "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_aligned_reads_index_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ { - "name": "updated_after", + "defaultValue": null, "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { "name": "order_by_asc", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by_desc", - "description": null, "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "with_links", + "defaultValue": null, "description": null, + "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -33430,26 +160989,26 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_links_any", + "defaultValue": null, "description": null, + "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "without_links", + "defaultValue": null, "description": null, + "name": "run_name", "type": { "kind": "LIST", "name": null, @@ -33458,40 +161017,60 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to", + "defaultValue": null, "description": null, + "name": "submitter_id", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to_any", + "defaultValue": null, "description": null, + "name": "file_size", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "Int", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "without_path_to", + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "with_path_to", "type": { "kind": "LIST", "name": null, @@ -33500,12 +161079,12 @@ "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "created_datetime", + "defaultValue": null, "description": null, + "name": "protocol_used", "type": { "kind": "LIST", "name": null, @@ -33514,12 +161093,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_category", + "defaultValue": null, "description": null, + "name": "cell_type", "type": { "kind": "LIST", "name": null, @@ -33528,12 +161107,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_format", + "defaultValue": null, "description": null, + "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -33542,12 +161121,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_type", + "defaultValue": null, "description": null, + "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -33556,12 +161135,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "doc_url", + "defaultValue": null, "description": null, + "name": "error_type", "type": { "kind": "LIST", "name": null, @@ -33570,12 +161149,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "error_type", + "defaultValue": null, "description": null, + "name": "object_id", "type": { "kind": "LIST", "name": null, @@ -33584,12 +161163,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "file_name", + "defaultValue": null, "description": null, + "name": "state", "type": { "kind": "LIST", "name": null, @@ -33598,26 +161177,22 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "file_size", + "defaultValue": null, "description": null, + "name": "created_after", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "file_state", + "defaultValue": null, "description": null, + "name": "file_name", "type": { "kind": "LIST", "name": null, @@ -33626,26 +161201,22 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "md5sum", + "defaultValue": null, "description": null, + "name": "order_by_desc", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "object_id", + "defaultValue": null, "description": null, + "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -33654,12 +161225,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "project_id", + "defaultValue": null, "description": null, + "name": "panel_used", "type": { "kind": "LIST", "name": null, @@ -33668,12 +161239,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "state", + "defaultValue": null, "description": null, + "name": "file_state", "type": { "kind": "LIST", "name": null, @@ -33682,12 +161253,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "updated_datetime", + "defaultValue": null, "description": null, + "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -33696,177 +161267,102 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "not", + "defaultValue": null, "description": null, + "name": "data_type", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_open_access_doc", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null - } - ], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "program", - "description": null, - "args": [ + } + }, { - "name": "id", + "defaultValue": null, "description": null, + "name": "updated_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "submitter_id", + "defaultValue": null, "description": null, + "name": "without_path_to", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } }, { - "name": "ids", + "defaultValue": null, "description": null, + "name": "cell_count", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "quick_search", + "defaultValue": null, "description": null, + "name": "with_links", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "first", + "defaultValue": null, "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { "name": "offset", - "description": null, "type": { "kind": "SCALAR", "name": "Int", "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "created_after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_before", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by_asc", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by_desc", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + } }, { - "name": "with_links", + "defaultValue": null, "description": null, + "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_slide_image", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_links_any", + "defaultValue": null, "description": null, + "name": "state_comment", "type": { "kind": "LIST", "name": null, @@ -33875,12 +161371,22 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "without_links", + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "data_format", "type": { "kind": "LIST", "name": null, @@ -33889,54 +161395,54 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to", + "defaultValue": null, "description": null, + "name": "frame_identifier", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to_any", + "defaultValue": null, "description": null, + "name": "cell_identifier", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "without_path_to", + "defaultValue": null, "description": null, + "name": "md5sum", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "dbgap_accession_number", + "defaultValue": null, "description": null, + "name": "ids", "type": { "kind": "LIST", "name": null, @@ -33945,12 +161451,22 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "name", + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "data_category", "type": { "kind": "LIST", "name": null, @@ -33959,63 +161475,63 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "not", + "defaultValue": null, "description": null, + "name": "experimental_strategy", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_program", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } } ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "slide_image", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "OBJECT", - "name": "program", + "name": "slide_image", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null + } }, { - "name": "_program_count", - "description": null, "args": [ { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "submitter_id", + "defaultValue": null, "description": null, + "name": "order_by_asc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "ids", + "defaultValue": null, "description": null, + "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -34024,102 +161540,130 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "quick_search", + "defaultValue": null, "description": null, + "name": "with_path_to_any", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } }, { - "name": "first", + "defaultValue": null, "description": null, + "name": "run_name", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "offset", + "defaultValue": null, "description": null, + "name": "submitter_id", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "created_before", + "defaultValue": null, "description": null, + "name": "file_size", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } }, { - "name": "created_after", + "defaultValue": null, "description": null, + "name": "created_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "updated_before", + "defaultValue": null, "description": null, + "name": "id", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "updated_after", + "defaultValue": null, "description": null, + "name": "with_path_to", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } }, { - "name": "order_by_asc", + "defaultValue": null, "description": null, + "name": "protocol_used", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "order_by_desc", + "defaultValue": null, "description": null, + "name": "cell_type", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "with_links", + "defaultValue": null, "description": null, + "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -34128,12 +161672,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_links_any", + "defaultValue": null, "description": null, + "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -34142,12 +161686,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "without_links", + "defaultValue": null, "description": null, + "name": "error_type", "type": { "kind": "LIST", "name": null, @@ -34156,54 +161700,74 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to", + "defaultValue": null, "description": null, + "name": "object_id", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to_any", + "defaultValue": null, "description": null, + "name": "state", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "without_path_to", + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "file_name", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "dbgap_accession_number", + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -34212,12 +161776,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "name", + "defaultValue": null, "description": null, + "name": "panel_used", "type": { "kind": "LIST", "name": null, @@ -34226,49 +161790,26 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "not", + "defaultValue": null, "description": null, + "name": "file_state", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_program", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null - } - ], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "core_metadata_collection", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + } }, { - "name": "submitter_id", + "defaultValue": null, "description": null, + "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -34277,12 +161818,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "ids", + "defaultValue": null, "description": null, + "name": "data_type", "type": { "kind": "LIST", "name": null, @@ -34291,102 +161832,126 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "quick_search", + "defaultValue": null, "description": null, + "name": "updated_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "first", + "defaultValue": null, "description": null, + "name": "without_path_to", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } }, { - "name": "offset", + "defaultValue": null, "description": null, + "name": "cell_count", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } }, { - "name": "created_before", + "defaultValue": null, "description": null, + "name": "with_links", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "created_after", + "defaultValue": null, "description": null, + "name": "offset", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - }, - "defaultValue": null + } }, { - "name": "updated_before", + "defaultValue": null, "description": null, + "name": "not", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_slide_image", + "ofType": null + } + } }, { - "name": "updated_after", + "defaultValue": null, "description": null, + "name": "state_comment", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "order_by_asc", + "defaultValue": null, "description": null, + "name": "quick_search", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "order_by_desc", + "defaultValue": null, "description": null, + "name": "data_format", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "with_links", + "defaultValue": null, "description": null, + "name": "frame_identifier", "type": { "kind": "LIST", "name": null, @@ -34395,12 +161960,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_links_any", + "defaultValue": null, "description": null, + "name": "cell_identifier", "type": { "kind": "LIST", "name": null, @@ -34409,12 +161974,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "without_links", + "defaultValue": null, "description": null, + "name": "md5sum", "type": { "kind": "LIST", "name": null, @@ -34423,54 +161988,87 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to", + "defaultValue": null, "description": null, + "name": "ids", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to_any", + "defaultValue": null, "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "data_category", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "without_path_to", + "defaultValue": null, "description": null, + "name": "experimental_strategy", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "accepts_healthy_volunteers", + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_slide_image_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, "description": null, + "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -34479,12 +162077,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "actual_enrollment", + "defaultValue": null, "description": null, + "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -34493,40 +162091,60 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "arm", + "defaultValue": null, "description": null, + "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "arm_description", + "defaultValue": null, "description": null, + "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "arm_name", + "defaultValue": null, "description": null, + "name": "ids", "type": { "kind": "LIST", "name": null, @@ -34535,12 +162153,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "arm_type", + "defaultValue": null, "description": null, + "name": "schema_version", "type": { "kind": "LIST", "name": null, @@ -34549,26 +162167,76 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, { - "name": "brief_summary", + "defaultValue": null, "description": null, + "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_root", "ofType": null } - }, - "defaultValue": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "brief_title", + "defaultValue": null, "description": null, + "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -34577,26 +162245,73 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "category", + "defaultValue": null, "description": null, + "name": "with_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "clinical_trial_website", + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "root", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "root", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, "description": null, + "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -34605,12 +162320,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "collaborators", + "defaultValue": null, "description": null, + "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -34619,68 +162334,60 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "condition", + "defaultValue": null, "description": null, + "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "contact", + "defaultValue": null, "description": null, + "name": "order_by_asc", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "contributor", + "defaultValue": null, "description": null, + "name": "updated_before", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "coverage", + "defaultValue": null, "description": null, + "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "created_datetime", + "defaultValue": null, "description": null, + "name": "ids", "type": { "kind": "LIST", "name": null, @@ -34689,12 +162396,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "creator", + "defaultValue": null, "description": null, + "name": "schema_version", "type": { "kind": "LIST", "name": null, @@ -34703,96 +162410,76 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_availability_date", + "defaultValue": null, "description": null, + "name": "quick_search", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "data_available", + "defaultValue": null, "description": null, + "name": "updated_after", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "data_available_for_request", + "defaultValue": null, "description": null, + "name": "created_after", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "data_category", + "defaultValue": null, "description": null, + "name": "offset", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, { - "name": "data_format", + "defaultValue": null, "description": null, + "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_root", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_type", + "defaultValue": null, "description": null, + "name": "order_by_desc", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "description", + "defaultValue": null, "description": null, + "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -34801,82 +162488,79 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "eligibility_criteria", + "defaultValue": null, "description": null, + "name": "created_before", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "enrollment", + "defaultValue": null, "description": null, + "name": "id", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "fda_regulated_device_product", + "defaultValue": null, "description": null, + "name": "with_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "fda_regulated_drug_product", + "defaultValue": null, "description": null, + "name": "first", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_root_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ { - "name": "first_posted_date", + "defaultValue": null, "description": null, + "name": "order_by_asc", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "focus", + "defaultValue": null, "description": null, + "name": "creator", "type": { "kind": "LIST", "name": null, @@ -34885,26 +162569,26 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "has_data_monitoring_committee", + "defaultValue": null, "description": null, + "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "intervention_type", + "defaultValue": null, "description": null, + "name": "submitter_id", "type": { "kind": "LIST", "name": null, @@ -34913,26 +162597,26 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "ipd_sharing_statement", + "defaultValue": null, "description": null, + "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_core_metadata_collection", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "language", + "defaultValue": null, "description": null, + "name": "relation", "type": { "kind": "LIST", "name": null, @@ -34941,12 +162625,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "last_update_posted_date", + "defaultValue": null, "description": null, + "name": "contributor", "type": { "kind": "LIST", "name": null, @@ -34955,54 +162639,46 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "location", + "defaultValue": null, "description": null, + "name": "created_before", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "locations_removed", + "defaultValue": null, "description": null, + "name": "id", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "nct_number", + "defaultValue": null, "description": null, + "name": "with_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "original_estimated_enrollment", + "defaultValue": null, "description": null, + "name": "subject", "type": { "kind": "LIST", "name": null, @@ -35011,12 +162687,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "primary_completion_date", + "defaultValue": null, "description": null, + "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -35025,12 +162701,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "principle_investigator", + "defaultValue": null, "description": null, + "name": "title", "type": { "kind": "LIST", "name": null, @@ -35039,12 +162715,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "project_id", + "defaultValue": null, "description": null, + "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -35053,12 +162729,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "prs_account", + "defaultValue": null, "description": null, + "name": "format", "type": { "kind": "LIST", "name": null, @@ -35067,12 +162743,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "publications", + "defaultValue": null, "description": null, + "name": "source", "type": { "kind": "LIST", "name": null, @@ -35081,12 +162757,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "publisher", + "defaultValue": null, "description": null, + "name": "state", "type": { "kind": "LIST", "name": null, @@ -35095,40 +162771,32 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "recruitment_status", + "defaultValue": null, "description": null, + "name": "created_after", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "responsible_party", + "defaultValue": null, "description": null, + "name": "order_by_desc", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "rights", + "defaultValue": null, "description": null, + "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -35137,12 +162805,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "secondary_id", + "defaultValue": null, "description": null, + "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -35151,12 +162819,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "source", + "defaultValue": null, "description": null, + "name": "description", "type": { "kind": "LIST", "name": null, @@ -35165,12 +162833,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "state", + "defaultValue": null, "description": null, + "name": "data_type", "type": { "kind": "LIST", "name": null, @@ -35179,40 +162847,36 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "study_completion_date", + "defaultValue": null, "description": null, + "name": "updated_before", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "study_design_allocation", + "defaultValue": null, "description": null, + "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "study_design_intervention_model", + "defaultValue": null, "description": null, + "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -35221,12 +162885,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "study_design_masking", + "defaultValue": null, "description": null, + "name": "coverage", "type": { "kind": "LIST", "name": null, @@ -35235,26 +162899,22 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "study_design_primary_purpose", + "defaultValue": null, "description": null, + "name": "offset", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, { - "name": "study_phase", + "defaultValue": null, "description": null, + "name": "date", "type": { "kind": "LIST", "name": null, @@ -35263,26 +162923,22 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "study_start_date", + "defaultValue": null, "description": null, + "name": "quick_search", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "subject", + "defaultValue": null, "description": null, + "name": "language", "type": { "kind": "LIST", "name": null, @@ -35291,12 +162947,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "submitted_date", + "defaultValue": null, "description": null, + "name": "rights", "type": { "kind": "LIST", "name": null, @@ -35305,12 +162961,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "title", + "defaultValue": null, "description": null, + "name": "publisher", "type": { "kind": "LIST", "name": null, @@ -35319,12 +162975,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "updated_datetime", + "defaultValue": null, "description": null, + "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -35333,12 +162989,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "us_product", + "defaultValue": null, "description": null, + "name": "ids", "type": { "kind": "LIST", "name": null, @@ -35347,38 +163003,33 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "verification_date", + "defaultValue": null, "description": null, + "name": "updated_after", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "not", + "defaultValue": null, "description": null, + "name": "first", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_core_metadata_collection", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "Int", + "ofType": null + } } ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "core_metadata_collection", "type": { "kind": "LIST", "name": null, @@ -35387,27 +163038,24 @@ "name": "core_metadata_collection", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null + } }, { - "name": "_core_metadata_collection_count", - "description": null, "args": [ { - "name": "id", + "defaultValue": null, "description": null, + "name": "order_by_asc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "submitter_id", + "defaultValue": null, "description": null, + "name": "creator", "type": { "kind": "LIST", "name": null, @@ -35416,130 +163064,116 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "ids", + "defaultValue": null, "description": null, + "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null - }, - { - "name": "quick_search", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + } }, { - "name": "created_before", + "defaultValue": null, "description": null, + "name": "submitter_id", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "created_after", + "defaultValue": null, "description": null, + "name": "not", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_core_metadata_collection", + "ofType": null + } + } }, { - "name": "updated_before", + "defaultValue": null, "description": null, + "name": "relation", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "updated_after", + "defaultValue": null, "description": null, + "name": "contributor", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "order_by_asc", + "defaultValue": null, "description": null, + "name": "created_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "order_by_desc", + "defaultValue": null, "description": null, + "name": "id", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "with_links", + "defaultValue": null, "description": null, + "name": "with_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_links_any", + "defaultValue": null, "description": null, + "name": "subject", "type": { "kind": "LIST", "name": null, @@ -35548,12 +163182,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "without_links", + "defaultValue": null, "description": null, + "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -35562,54 +163196,40 @@ "name": "String", "ofType": null } - }, - "defaultValue": null - }, - { - "name": "with_path_to", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", - "ofType": null - } - }, - "defaultValue": null + } }, { - "name": "with_path_to_any", + "defaultValue": null, "description": null, + "name": "title", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "without_path_to", + "defaultValue": null, "description": null, + "name": "created_datetime", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "accepts_healthy_volunteers", + "defaultValue": null, "description": null, + "name": "format", "type": { "kind": "LIST", "name": null, @@ -35618,12 +163238,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "actual_enrollment", + "defaultValue": null, "description": null, + "name": "source", "type": { "kind": "LIST", "name": null, @@ -35632,12 +163252,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "arm", + "defaultValue": null, "description": null, + "name": "state", "type": { "kind": "LIST", "name": null, @@ -35646,12 +163266,32 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "arm_description", + "defaultValue": null, "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -35660,12 +163300,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "arm_name", + "defaultValue": null, "description": null, + "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -35674,12 +163314,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "arm_type", + "defaultValue": null, "description": null, + "name": "description", "type": { "kind": "LIST", "name": null, @@ -35688,12 +163328,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "brief_summary", + "defaultValue": null, "description": null, + "name": "data_type", "type": { "kind": "LIST", "name": null, @@ -35702,26 +163342,36 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "brief_title", + "defaultValue": null, "description": null, + "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "category", + "defaultValue": null, "description": null, + "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -35730,12 +163380,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "clinical_trial_website", + "defaultValue": null, "description": null, + "name": "coverage", "type": { "kind": "LIST", "name": null, @@ -35744,12 +163394,22 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, { - "name": "collaborators", + "defaultValue": null, "description": null, + "name": "date", "type": { "kind": "LIST", "name": null, @@ -35758,12 +163418,22 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "condition", + "defaultValue": null, "description": null, + "name": "language", "type": { "kind": "LIST", "name": null, @@ -35772,12 +163442,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "contact", + "defaultValue": null, "description": null, + "name": "rights", "type": { "kind": "LIST", "name": null, @@ -35786,12 +163456,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "contributor", + "defaultValue": null, "description": null, + "name": "publisher", "type": { "kind": "LIST", "name": null, @@ -35800,12 +163470,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "coverage", + "defaultValue": null, "description": null, + "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -35814,12 +163484,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "created_datetime", + "defaultValue": null, "description": null, + "name": "ids", "type": { "kind": "LIST", "name": null, @@ -35828,12 +163498,45 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "creator", + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_core_metadata_collection_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, "description": null, + "name": "relationship_gender", "type": { "kind": "LIST", "name": null, @@ -35842,26 +163545,46 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "data_availability_date", + "defaultValue": null, "description": null, + "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_available", + "defaultValue": null, "description": null, + "name": "submitter_id", "type": { "kind": "LIST", "name": null, @@ -35870,40 +163593,50 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_available_for_request", + "defaultValue": null, "description": null, + "name": "with_links", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_category", + "defaultValue": null, "description": null, + "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_family_history", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_format", + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "relationship_type", "type": { "kind": "LIST", "name": null, @@ -35912,26 +163645,56 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_type", + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "with_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "description", + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -35940,12 +163703,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "eligibility_criteria", + "defaultValue": null, "description": null, + "name": "relative_with_cancer_history", "type": { "kind": "LIST", "name": null, @@ -35954,12 +163717,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "enrollment", + "defaultValue": null, "description": null, + "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -35968,12 +163731,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "fda_regulated_device_product", + "defaultValue": null, "description": null, + "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -35982,12 +163745,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "fda_regulated_drug_product", + "defaultValue": null, "description": null, + "name": "ids", "type": { "kind": "LIST", "name": null, @@ -35996,12 +163759,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "first_posted_date", + "defaultValue": null, "description": null, + "name": "relationship_primary_diagnosis", "type": { "kind": "LIST", "name": null, @@ -36010,12 +163773,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "focus", + "defaultValue": null, "description": null, + "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -36024,12 +163787,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "has_data_monitoring_committee", + "defaultValue": null, "description": null, + "name": "state", "type": { "kind": "LIST", "name": null, @@ -36038,40 +163801,80 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "intervention_type", + "defaultValue": null, "description": null, + "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, { - "name": "ipd_sharing_statement", + "defaultValue": null, "description": null, + "name": "relationship_age_at_diagnosis", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "language", + "defaultValue": null, "description": null, + "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -36080,12 +163883,29 @@ "name": "String", "ofType": null } - }, - "defaultValue": null - }, + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "family_history", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "family_history", + "ofType": null + } + } + }, + { + "args": [ { - "name": "last_update_posted_date", + "defaultValue": null, "description": null, + "name": "relationship_gender", "type": { "kind": "LIST", "name": null, @@ -36094,26 +163914,46 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "location", + "defaultValue": null, "description": null, + "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "locations_removed", + "defaultValue": null, "description": null, + "name": "submitter_id", "type": { "kind": "LIST", "name": null, @@ -36122,12 +163962,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "nct_number", + "defaultValue": null, "description": null, + "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -36136,26 +163976,36 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "original_estimated_enrollment", + "defaultValue": null, "description": null, + "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_family_history", "ofType": null } - }, - "defaultValue": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, { - "name": "primary_completion_date", + "defaultValue": null, "description": null, + "name": "relationship_type", "type": { "kind": "LIST", "name": null, @@ -36164,26 +164014,56 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "principle_investigator", + "defaultValue": null, "description": null, + "name": "with_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "project_id", + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -36192,12 +164072,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "prs_account", + "defaultValue": null, "description": null, + "name": "relative_with_cancer_history", "type": { "kind": "LIST", "name": null, @@ -36206,12 +164086,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "publications", + "defaultValue": null, "description": null, + "name": "created_datetime", "type": { "kind": "LIST", "name": null, @@ -36220,12 +164100,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "publisher", + "defaultValue": null, "description": null, + "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -36234,12 +164114,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "recruitment_status", + "defaultValue": null, "description": null, + "name": "ids", "type": { "kind": "LIST", "name": null, @@ -36248,12 +164128,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "responsible_party", + "defaultValue": null, "description": null, + "name": "relationship_primary_diagnosis", "type": { "kind": "LIST", "name": null, @@ -36262,12 +164142,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "rights", + "defaultValue": null, "description": null, + "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -36276,12 +164156,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "secondary_id", + "defaultValue": null, "description": null, + "name": "state", "type": { "kind": "LIST", "name": null, @@ -36290,40 +164170,80 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "source", + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "created_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "state", + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "relationship_age_at_diagnosis", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "study_completion_date", + "defaultValue": null, "description": null, + "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -36332,12 +164252,25 @@ "name": "String", "ofType": null } - }, - "defaultValue": null - }, + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_family_history_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ { - "name": "study_design_allocation", + "defaultValue": null, "description": null, + "name": "sample_type_id", "type": { "kind": "LIST", "name": null, @@ -36346,12 +164279,22 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order_by_asc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "study_design_intervention_model", + "defaultValue": null, "description": null, + "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -36360,12 +164303,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "study_design_masking", + "defaultValue": null, "description": null, + "name": "biospecimen_anatomic_site", "type": { "kind": "LIST", "name": null, @@ -36374,26 +164317,26 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "study_design_primary_purpose", + "defaultValue": null, "description": null, + "name": "with_path_to_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "study_phase", + "defaultValue": null, "description": null, + "name": "oct_embedded", "type": { "kind": "LIST", "name": null, @@ -36402,12 +164345,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "study_start_date", + "defaultValue": null, "description": null, + "name": "tumor_code_id", "type": { "kind": "LIST", "name": null, @@ -36416,12 +164359,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "subject", + "defaultValue": null, "description": null, + "name": "submitter_id", "type": { "kind": "LIST", "name": null, @@ -36430,12 +164373,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "submitted_date", + "defaultValue": null, "description": null, + "name": "intermediate_dimension", "type": { "kind": "LIST", "name": null, @@ -36444,54 +164387,74 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "title", + "defaultValue": null, "description": null, + "name": "sample_volume", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "updated_datetime", + "defaultValue": null, + "description": null, + "name": "created_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "with_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "us_product", + "defaultValue": null, "description": null, + "name": "is_ffpe", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "verification_date", + "defaultValue": null, "description": null, + "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -36500,49 +164463,26 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "not", + "defaultValue": null, "description": null, + "name": "created_datetime", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_core_metadata_collection", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null - } - ], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "clinical_trial_file", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + } }, { - "name": "submitter_id", + "defaultValue": null, "description": null, + "name": "tumor_descriptor", "type": { "kind": "LIST", "name": null, @@ -36551,12 +164491,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "ids", + "defaultValue": null, "description": null, + "name": "sample_type", "type": { "kind": "LIST", "name": null, @@ -36565,102 +164505,74 @@ "name": "String", "ofType": null } - }, - "defaultValue": null - }, - { - "name": "quick_search", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + } }, { - "name": "first", + "defaultValue": null, "description": null, + "name": "time_between_excision_and_freezing", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "offset", + "defaultValue": null, "description": null, + "name": "state", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "created_before", + "defaultValue": null, "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { "name": "created_after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updated_before", - "description": null, "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "updated_after", + "defaultValue": null, "description": null, + "name": "shortest_dimension", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "order_by_asc", + "defaultValue": null, "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { "name": "order_by_desc", - "description": null, "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "with_links", + "defaultValue": null, "description": null, + "name": "diagnosis_pathologically_confirmed", "type": { "kind": "LIST", "name": null, @@ -36669,12 +164581,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_links_any", + "defaultValue": null, "description": null, + "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -36683,82 +164595,92 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "without_links", + "defaultValue": null, "description": null, + "name": "current_weight", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to", + "defaultValue": null, "description": null, + "name": "composition", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to_any", + "defaultValue": null, "description": null, + "name": "with_links_any", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "without_path_to", + "defaultValue": null, "description": null, + "name": "time_between_clamping_and_freezing", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "created_datetime", + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_category", + "defaultValue": null, "description": null, + "name": "method_of_sample_procurement", "type": { "kind": "LIST", "name": null, @@ -36767,12 +164689,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_format", + "defaultValue": null, "description": null, + "name": "tumor_code", "type": { "kind": "LIST", "name": null, @@ -36781,12 +164703,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_type", + "defaultValue": null, "description": null, + "name": "with_links", "type": { "kind": "LIST", "name": null, @@ -36795,12 +164717,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "error_type", + "defaultValue": null, "description": null, + "name": "tissue_type", "type": { "kind": "LIST", "name": null, @@ -36809,40 +164731,50 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "file_name", + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "not", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_sample", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "file_size", + "defaultValue": null, "description": null, + "name": "days_to_sample_procurement", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "Int", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "file_state", + "defaultValue": null, "description": null, + "name": "freezing_method", "type": { "kind": "LIST", "name": null, @@ -36851,12 +164783,22 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "md5sum", + "defaultValue": null, + "description": null, + "name": "quick_search", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "ids", "type": { "kind": "LIST", "name": null, @@ -36865,12 +164807,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "object_id", + "defaultValue": null, "description": null, + "name": "preservation_method", "type": { "kind": "LIST", "name": null, @@ -36879,40 +164821,50 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "project_id", + "defaultValue": null, "description": null, + "name": "days_to_collection", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "state", + "defaultValue": null, + "description": null, + "name": "updated_after", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "initial_weight", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "updated_datetime", + "defaultValue": null, "description": null, + "name": "longest_dimension", "type": { "kind": "LIST", "name": null, @@ -36921,53 +164873,63 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "not", + "defaultValue": null, "description": null, + "name": "first", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_clinical_trial_file", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "Int", + "ofType": null + } } ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "sample", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "OBJECT", - "name": "clinical_trial_file", + "name": "sample", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null + } }, { - "name": "_clinical_trial_file_count", - "description": null, "args": [ { - "name": "id", + "defaultValue": null, + "description": null, + "name": "sample_type_id", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, "description": null, + "name": "order_by_asc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "submitter_id", + "defaultValue": null, "description": null, + "name": "updated_datetime", "type": { "kind": "LIST", "name": null, @@ -36976,12 +164938,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "ids", + "defaultValue": null, "description": null, + "name": "biospecimen_anatomic_site", "type": { "kind": "LIST", "name": null, @@ -36990,130 +164952,144 @@ "name": "String", "ofType": null } - }, - "defaultValue": null - }, - { - "name": "quick_search", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + } }, { - "name": "first", + "defaultValue": null, "description": null, + "name": "with_path_to_any", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", + "ofType": null + } + } }, { - "name": "offset", + "defaultValue": null, "description": null, + "name": "oct_embedded", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "created_before", + "defaultValue": null, "description": null, + "name": "tumor_code_id", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "created_after", + "defaultValue": null, "description": null, + "name": "submitter_id", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "updated_before", + "defaultValue": null, "description": null, + "name": "intermediate_dimension", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "updated_after", + "defaultValue": null, "description": null, + "name": "sample_volume", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } }, { - "name": "order_by_asc", + "defaultValue": null, "description": null, + "name": "created_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "order_by_desc", + "defaultValue": null, "description": null, + "name": "id", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "with_links", + "defaultValue": null, "description": null, + "name": "with_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_links_any", + "defaultValue": null, "description": null, + "name": "is_ffpe", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "without_links", + "defaultValue": null, "description": null, + "name": "without_links", "type": { "kind": "LIST", "name": null, @@ -37122,54 +165098,54 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to", + "defaultValue": null, "description": null, + "name": "created_datetime", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "with_path_to_any", + "defaultValue": null, "description": null, + "name": "tumor_descriptor", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "without_path_to", + "defaultValue": null, "description": null, + "name": "sample_type", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WithPathToInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "created_datetime", + "defaultValue": null, "description": null, + "name": "time_between_excision_and_freezing", "type": { "kind": "LIST", "name": null, @@ -37178,12 +165154,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_category", + "defaultValue": null, "description": null, + "name": "state", "type": { "kind": "LIST", "name": null, @@ -37192,26 +165168,22 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "data_format", + "defaultValue": null, "description": null, + "name": "created_after", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "name": "data_type", + "defaultValue": null, "description": null, + "name": "shortest_dimension", "type": { "kind": "LIST", "name": null, @@ -37220,12 +165192,22 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "error_type", + "defaultValue": null, + "description": null, + "name": "order_by_desc", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "diagnosis_pathologically_confirmed", "type": { "kind": "LIST", "name": null, @@ -37234,12 +165216,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "file_name", + "defaultValue": null, "description": null, + "name": "project_id", "type": { "kind": "LIST", "name": null, @@ -37248,12 +165230,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "file_size", + "defaultValue": null, "description": null, + "name": "current_weight", "type": { "kind": "LIST", "name": null, @@ -37262,12 +165244,12 @@ "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "file_state", + "defaultValue": null, "description": null, + "name": "composition", "type": { "kind": "LIST", "name": null, @@ -37276,12 +165258,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "md5sum", + "defaultValue": null, "description": null, + "name": "with_links_any", "type": { "kind": "LIST", "name": null, @@ -37290,12 +165272,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "object_id", + "defaultValue": null, "description": null, + "name": "time_between_clamping_and_freezing", "type": { "kind": "LIST", "name": null, @@ -37304,26 +165286,36 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "project_id", + "defaultValue": null, + "description": null, + "name": "updated_before", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, + "name": "without_path_to", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "WithPathToInput", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "state", + "defaultValue": null, "description": null, + "name": "method_of_sample_procurement", "type": { "kind": "LIST", "name": null, @@ -37332,12 +165324,12 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "updated_datetime", + "defaultValue": null, "description": null, + "name": "tumor_code", "type": { "kind": "LIST", "name": null, @@ -37346,59 +165338,26 @@ "name": "String", "ofType": null } - }, - "defaultValue": null + } }, { - "name": "not", + "defaultValue": null, "description": null, + "name": "with_links", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "NotPropertiesInput_clinical_trial_file", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null - } - ], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datanode", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "submitter_id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + } }, { - "name": "ids", + "defaultValue": null, "description": null, + "name": "tissue_type", "type": { "kind": "LIST", "name": null, @@ -37407,242 +165366,267 @@ "name": "String", "ofType": null } - }, - "defaultValue": null - }, - { - "name": "quick_search", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + } }, { - "name": "first", + "defaultValue": null, "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "10" - }, - { "name": "offset", - "description": null, "type": { "kind": "SCALAR", "name": "Int", "ofType": null - }, - "defaultValue": null + } }, { - "name": "created_before", + "defaultValue": null, "description": null, + "name": "not", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NotPropertiesInput_sample", + "ofType": null + } + } }, { - "name": "created_after", + "defaultValue": null, "description": null, + "name": "days_to_sample_procurement", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } }, { - "name": "updated_before", + "defaultValue": null, "description": null, + "name": "freezing_method", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "updated_after", + "defaultValue": null, "description": null, + "name": "quick_search", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "order_by_asc", + "defaultValue": null, "description": null, + "name": "ids", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "order_by_desc", + "defaultValue": null, "description": null, + "name": "preservation_method", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "created_datetime", + "defaultValue": null, "description": null, + "name": "days_to_collection", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } }, { - "name": "data_category", + "defaultValue": null, "description": null, + "name": "updated_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "data_format", + "defaultValue": null, "description": null, + "name": "initial_weight", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } }, { - "name": "data_type", + "defaultValue": null, "description": null, + "name": "longest_dimension", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "error_type", + "defaultValue": null, "description": null, + "name": "first", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - }, - "defaultValue": null - }, + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "_sample_count", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [ { - "name": "file_name", + "defaultValue": null, "description": null, + "name": "md5sum", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "file_size", + "defaultValue": null, "description": null, + "name": "data_category", "type": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "file_state", + "defaultValue": null, "description": null, + "name": "order_by_asc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "md5sum", + "defaultValue": null, "description": null, + "name": "updated_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "object_id", + "defaultValue": null, "description": null, + "name": "file_name", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "project_id", + "defaultValue": null, "description": null, + "name": "file_size", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - }, - "defaultValue": null + } }, { - "name": "state", + "defaultValue": null, "description": null, + "name": "data_format", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "updated_datetime", + "defaultValue": null, "description": null, + "name": "quick_search", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "type", + "defaultValue": null, "description": null, + "name": "offset", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - }, - "defaultValue": null + } }, { - "name": "of_type", + "defaultValue": null, "description": null, + "name": "of_type", "type": { "kind": "LIST", "name": null, @@ -37651,264 +165635,224 @@ "name": "String", "ofType": null } - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DataNode", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_node_type", - "description": null, - "args": [ - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "10" - }, - { - "name": "order_by_asc", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "order_by_desc", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + } }, { - "name": "title", + "defaultValue": null, "description": null, + "name": "submitter_id", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "constraints", + "defaultValue": null, "description": null, + "name": "created_before", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "systemProperties", + "defaultValue": null, "description": null, + "name": "id", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "type", + "defaultValue": null, "description": null, + "name": "data_type", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "project", + "defaultValue": null, "description": null, + "name": "created_datetime", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "required", + "defaultValue": null, "description": null, + "name": "state_comment", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "program", + "defaultValue": null, "description": null, + "name": "error_type", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "submittable", + "defaultValue": null, "description": null, + "name": "updated_datetime", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "validators", + "defaultValue": null, "description": null, + "name": "ids", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "name": "id", + "defaultValue": null, "description": null, + "name": "object_id", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "description", + "defaultValue": null, "description": null, + "name": "state", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "namespace", + "defaultValue": null, "description": null, + "name": "updated_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "uniqueKeys", + "defaultValue": null, "description": null, + "name": "created_after", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "root", + "defaultValue": null, "description": null, + "name": "order_by_desc", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "links", + "defaultValue": null, "description": null, + "name": "project_id", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "category", + "defaultValue": null, "description": null, + "name": "type", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "additionalProperties", + "defaultValue": null, "description": null, + "name": "file_state", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, { - "name": "properties", + "defaultValue": "10", "description": null, + "name": "first", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - }, - "defaultValue": null + } } ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "datanode", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "OBJECT", - "name": "NodeType", + "name": "DataNode", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null + } } ], "inputFields": null, "interfaces": [], - "enumValues": null, + "kind": "OBJECT", + "name": "viewer", "possibleTypes": null }, { - "kind": "OBJECT", - "name": "__Schema", "description": "A GraphQL Schema defines the capabilities of a GraphQL server. It exposes all available types and directives on the server, as well as the entry points for query, mutation and subscription operations.", + "enumValues": null, "fields": [ { - "name": "types", - "description": "A list of all types supported by this server.", "args": [], + "deprecationReason": null, + "description": "A list of all types supported by this server.", + "isDeprecated": false, + "name": "types", "type": { "kind": "NON_NULL", "name": null, @@ -37925,14 +165869,14 @@ } } } - }, - "isDeprecated": false, - "deprecationReason": null + } }, { - "name": "queryType", - "description": "The type that query operations will be rooted at.", "args": [], + "deprecationReason": null, + "description": "The type that query operations will be rooted at.", + "isDeprecated": false, + "name": "queryType", "type": { "kind": "NON_NULL", "name": null, @@ -37941,38 +165885,38 @@ "name": "__Type", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null + } }, { - "name": "mutationType", - "description": "If this server supports mutation, the type that mutation operations will be rooted at.", "args": [], + "deprecationReason": null, + "description": "If this server supports mutation, the type that mutation operations will be rooted at.", + "isDeprecated": false, + "name": "mutationType", "type": { "kind": "OBJECT", "name": "__Type", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, { - "name": "subscriptionType", - "description": "If this server support subscription, the type that subscription operations will be rooted at.", "args": [], + "deprecationReason": null, + "description": "If this server support subscription, the type that subscription operations will be rooted at.", + "isDeprecated": false, + "name": "subscriptionType", "type": { "kind": "OBJECT", "name": "__Type", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, { - "name": "directives", - "description": "A list of all directives supported by this server.", "args": [], + "deprecationReason": null, + "description": "A list of all directives supported by this server.", + "isDeprecated": false, + "name": "directives", "type": { "kind": "NON_NULL", "name": null, @@ -37989,25 +165933,25 @@ } } } - }, - "isDeprecated": false, - "deprecationReason": null + } } ], "inputFields": null, "interfaces": [], - "enumValues": null, + "kind": "OBJECT", + "name": "__Schema", "possibleTypes": null }, { - "kind": "OBJECT", - "name": "__Type", "description": "The fundamental unit of any GraphQL Schema is the type. There are many kinds of types in GraphQL as represented by the `__TypeKind` enum.\n\nDepending on the kind of a type, certain fields describe information about that type. Scalar types provide no information beyond a name and description, while Enum types provide their values. Object and Interface types provide the fields they describe. Abstract types, Union and Interface, provide the Object types possible at runtime. List and NonNull types compose other types.", + "enumValues": null, "fields": [ { - "name": "kind", - "description": null, "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "kind", "type": { "kind": "NON_NULL", "name": null, @@ -38016,49 +165960,49 @@ "name": "__TypeKind", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null + } }, { - "name": "name", - "description": null, "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "name", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, { - "name": "description", - "description": null, "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "description", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, { - "name": "fields", - "description": null, "args": [ { - "name": "includeDeprecated", + "defaultValue": "false", "description": null, + "name": "includeDeprecated", "type": { "kind": "SCALAR", "name": "Boolean", "ofType": null - }, - "defaultValue": "false" + } } ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "fields", "type": { "kind": "LIST", "name": null, @@ -38071,14 +166015,14 @@ "ofType": null } } - }, - "isDeprecated": false, - "deprecationReason": null + } }, { - "name": "interfaces", - "description": null, "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "interfaces", "type": { "kind": "LIST", "name": null, @@ -38091,14 +166035,14 @@ "ofType": null } } - }, - "isDeprecated": false, - "deprecationReason": null + } }, { - "name": "possibleTypes", - "description": null, "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "possibleTypes", "type": { "kind": "LIST", "name": null, @@ -38111,25 +166055,25 @@ "ofType": null } } - }, - "isDeprecated": false, - "deprecationReason": null + } }, { - "name": "enumValues", - "description": null, "args": [ { - "name": "includeDeprecated", + "defaultValue": "false", "description": null, + "name": "includeDeprecated", "type": { "kind": "SCALAR", "name": "Boolean", "ofType": null - }, - "defaultValue": "false" + } } ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "enumValues", "type": { "kind": "LIST", "name": null, @@ -38142,14 +166086,14 @@ "ofType": null } } - }, - "isDeprecated": false, - "deprecationReason": null + } }, { - "name": "inputFields", - "description": null, "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "inputFields", "type": { "kind": "LIST", "name": null, @@ -38162,96 +166106,96 @@ "ofType": null } } - }, - "isDeprecated": false, - "deprecationReason": null + } }, { - "name": "ofType", - "description": null, "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "ofType", "type": { "kind": "OBJECT", "name": "__Type", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } } ], "inputFields": null, "interfaces": [], - "enumValues": null, + "kind": "OBJECT", + "name": "__Type", "possibleTypes": null }, { - "kind": "ENUM", - "name": "__TypeKind", "description": "An enum describing what kind of type a given `__Type` is", - "fields": null, - "inputFields": null, - "interfaces": null, "enumValues": [ { - "name": "SCALAR", + "deprecationReason": null, "description": "Indicates this type is a scalar.", "isDeprecated": false, - "deprecationReason": null + "name": "SCALAR" }, { - "name": "OBJECT", + "deprecationReason": null, "description": "Indicates this type is an object. `fields` and `interfaces` are valid fields.", "isDeprecated": false, - "deprecationReason": null + "name": "OBJECT" }, { - "name": "INTERFACE", + "deprecationReason": null, "description": "Indicates this type is an interface. `fields` and `possibleTypes` are valid fields.", "isDeprecated": false, - "deprecationReason": null + "name": "INTERFACE" }, { - "name": "UNION", + "deprecationReason": null, "description": "Indicates this type is a union. `possibleTypes` is a valid field.", "isDeprecated": false, - "deprecationReason": null + "name": "UNION" }, { - "name": "ENUM", + "deprecationReason": null, "description": "Indicates this type is an enum. `enumValues` is a valid field.", "isDeprecated": false, - "deprecationReason": null + "name": "ENUM" }, { - "name": "INPUT_OBJECT", + "deprecationReason": null, "description": "Indicates this type is an input object. `inputFields` is a valid field.", "isDeprecated": false, - "deprecationReason": null + "name": "INPUT_OBJECT" }, { - "name": "LIST", + "deprecationReason": null, "description": "Indicates this type is a list. `ofType` is a valid field.", "isDeprecated": false, - "deprecationReason": null + "name": "LIST" }, { - "name": "NON_NULL", + "deprecationReason": null, "description": "Indicates this type is a non-null. `ofType` is a valid field.", "isDeprecated": false, - "deprecationReason": null + "name": "NON_NULL" } ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "__TypeKind", "possibleTypes": null }, { - "kind": "OBJECT", - "name": "__Field", "description": "Object and Interface types are described by a list of Fields, each of which has a name, potentially a list of arguments, and a return type.", + "enumValues": null, "fields": [ { - "name": "name", - "description": null, "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "name", "type": { "kind": "NON_NULL", "name": null, @@ -38260,26 +166204,26 @@ "name": "String", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null + } }, { - "name": "description", - "description": null, "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "description", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, { - "name": "args", - "description": null, "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "args", "type": { "kind": "NON_NULL", "name": null, @@ -38296,14 +166240,14 @@ } } } - }, - "isDeprecated": false, - "deprecationReason": null + } }, { - "name": "type", - "description": null, "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "type", "type": { "kind": "NON_NULL", "name": null, @@ -38312,14 +166256,14 @@ "name": "__Type", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null + } }, { - "name": "isDeprecated", - "description": null, "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "isDeprecated", "type": { "kind": "NON_NULL", "name": null, @@ -38328,37 +166272,37 @@ "name": "Boolean", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null + } }, { - "name": "deprecationReason", - "description": null, "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "deprecationReason", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } } ], "inputFields": null, "interfaces": [], - "enumValues": null, + "kind": "OBJECT", + "name": "__Field", "possibleTypes": null }, { - "kind": "OBJECT", - "name": "__InputValue", "description": "Arguments provided to Fields or Directives and the input fields of an InputObject are represented as Input Values which describe their type and optionally a default value.", + "enumValues": null, "fields": [ { - "name": "name", - "description": null, "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "name", "type": { "kind": "NON_NULL", "name": null, @@ -38367,26 +166311,26 @@ "name": "String", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null + } }, { - "name": "description", - "description": null, "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "description", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, { - "name": "type", - "description": null, "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "type", "type": { "kind": "NON_NULL", "name": null, @@ -38395,37 +166339,37 @@ "name": "__Type", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null + } }, { - "name": "defaultValue", - "description": null, "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "defaultValue", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } } ], "inputFields": null, "interfaces": [], - "enumValues": null, + "kind": "OBJECT", + "name": "__InputValue", "possibleTypes": null }, { - "kind": "OBJECT", - "name": "__EnumValue", "description": "One possible value for a given Enum. Enum values are unique values, not a placeholder for a string or numeric value. However an Enum value is returned in a JSON response as a string.", + "enumValues": null, "fields": [ { - "name": "name", - "description": null, "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "name", "type": { "kind": "NON_NULL", "name": null, @@ -38434,26 +166378,26 @@ "name": "String", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null + } }, { - "name": "description", - "description": null, "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "description", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, { - "name": "isDeprecated", - "description": null, "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "isDeprecated", "type": { "kind": "NON_NULL", "name": null, @@ -38462,37 +166406,37 @@ "name": "Boolean", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null + } }, { - "name": "deprecationReason", - "description": null, "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "deprecationReason", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } } ], "inputFields": null, "interfaces": [], - "enumValues": null, + "kind": "OBJECT", + "name": "__EnumValue", "possibleTypes": null }, { - "kind": "OBJECT", - "name": "__Directive", "description": "A Directive provides a way to describe alternate runtime execution and type validation behavior in a GraphQL document.\n\nIn some cases, you need to provide options to alter GraphQL's execution behavior in ways field arguments will not suffice, such as conditionally including or skipping a field. Directives provide this by describing additional information to the executor.", + "enumValues": null, "fields": [ { - "name": "name", - "description": null, "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "name", "type": { "kind": "NON_NULL", "name": null, @@ -38501,26 +166445,26 @@ "name": "String", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null + } }, { - "name": "description", - "description": null, "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "description", "type": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, { - "name": "locations", - "description": null, "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "locations", "type": { "kind": "NON_NULL", "name": null, @@ -38537,14 +166481,14 @@ } } } - }, - "isDeprecated": false, - "deprecationReason": null + } }, { - "name": "args", - "description": null, "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "args", "type": { "kind": "NON_NULL", "name": null, @@ -38561,14 +166505,14 @@ } } } - }, - "isDeprecated": false, - "deprecationReason": null + } }, { - "name": "onOperation", - "description": null, "args": [], + "deprecationReason": "Use `locations`.", + "description": null, + "isDeprecated": true, + "name": "onOperation", "type": { "kind": "NON_NULL", "name": null, @@ -38577,14 +166521,14 @@ "name": "Boolean", "ofType": null } - }, - "isDeprecated": true, - "deprecationReason": "Use `locations`." + } }, { - "name": "onFragment", - "description": null, "args": [], + "deprecationReason": "Use `locations`.", + "description": null, + "isDeprecated": true, + "name": "onFragment", "type": { "kind": "NON_NULL", "name": null, @@ -38593,14 +166537,14 @@ "name": "Boolean", "ofType": null } - }, - "isDeprecated": true, - "deprecationReason": "Use `locations`." + } }, { - "name": "onField", - "description": null, "args": [], + "deprecationReason": "Use `locations`.", + "description": null, + "isDeprecated": true, + "name": "onField", "type": { "kind": "NON_NULL", "name": null, @@ -38609,187 +166553,134 @@ "name": "Boolean", "ofType": null } - }, - "isDeprecated": true, - "deprecationReason": "Use `locations`." + } } ], "inputFields": null, "interfaces": [], - "enumValues": null, + "kind": "OBJECT", + "name": "__Directive", "possibleTypes": null }, { - "kind": "ENUM", - "name": "__DirectiveLocation", "description": "A Directive can be adjacent to many parts of the GraphQL language, a __DirectiveLocation describes one such possible adjacencies.", - "fields": null, - "inputFields": null, - "interfaces": null, "enumValues": [ { - "name": "QUERY", + "deprecationReason": null, "description": "Location adjacent to a query operation.", "isDeprecated": false, - "deprecationReason": null + "name": "QUERY" }, { - "name": "MUTATION", + "deprecationReason": null, "description": "Location adjacent to a mutation operation.", "isDeprecated": false, - "deprecationReason": null + "name": "MUTATION" }, { - "name": "SUBSCRIPTION", + "deprecationReason": null, "description": "Location adjacent to a subscription operation.", "isDeprecated": false, - "deprecationReason": null + "name": "SUBSCRIPTION" }, { - "name": "FIELD", + "deprecationReason": null, "description": "Location adjacent to a field.", "isDeprecated": false, - "deprecationReason": null + "name": "FIELD" }, { - "name": "FRAGMENT_DEFINITION", + "deprecationReason": null, "description": "Location adjacent to a fragment definition.", "isDeprecated": false, - "deprecationReason": null + "name": "FRAGMENT_DEFINITION" }, { - "name": "FRAGMENT_SPREAD", + "deprecationReason": null, "description": "Location adjacent to a fragment spread.", "isDeprecated": false, - "deprecationReason": null + "name": "FRAGMENT_SPREAD" }, { - "name": "INLINE_FRAGMENT", + "deprecationReason": null, "description": "Location adjacent to an inline fragment.", "isDeprecated": false, - "deprecationReason": null + "name": "INLINE_FRAGMENT" }, { - "name": "SCHEMA", + "deprecationReason": null, "description": "Location adjacent to a schema definition.", "isDeprecated": false, - "deprecationReason": null + "name": "SCHEMA" }, { - "name": "SCALAR", + "deprecationReason": null, "description": "Location adjacent to a scalar definition.", "isDeprecated": false, - "deprecationReason": null + "name": "SCALAR" }, { - "name": "OBJECT", + "deprecationReason": null, "description": "Location adjacent to an object definition.", "isDeprecated": false, - "deprecationReason": null + "name": "OBJECT" }, { - "name": "FIELD_DEFINITION", + "deprecationReason": null, "description": "Location adjacent to a field definition.", "isDeprecated": false, - "deprecationReason": null + "name": "FIELD_DEFINITION" }, { - "name": "ARGUMENT_DEFINITION", + "deprecationReason": null, "description": "Location adjacent to an argument definition.", "isDeprecated": false, - "deprecationReason": null + "name": "ARGUMENT_DEFINITION" }, { - "name": "INTERFACE", + "deprecationReason": null, "description": "Location adjacent to an interface definition.", "isDeprecated": false, - "deprecationReason": null + "name": "INTERFACE" }, { - "name": "UNION", + "deprecationReason": null, "description": "Location adjacent to a union definition.", "isDeprecated": false, - "deprecationReason": null + "name": "UNION" }, { - "name": "ENUM", + "deprecationReason": null, "description": "Location adjacent to an enum definition.", "isDeprecated": false, - "deprecationReason": null + "name": "ENUM" }, { - "name": "ENUM_VALUE", + "deprecationReason": null, "description": "Location adjacent to an enum value definition.", "isDeprecated": false, - "deprecationReason": null + "name": "ENUM_VALUE" }, { - "name": "INPUT_OBJECT", + "deprecationReason": null, "description": "Location adjacent to an input object definition.", "isDeprecated": false, - "deprecationReason": null + "name": "INPUT_OBJECT" }, { - "name": "INPUT_FIELD_DEFINITION", + "deprecationReason": null, "description": "Location adjacent to an input object field definition.", "isDeprecated": false, - "deprecationReason": null + "name": "INPUT_FIELD_DEFINITION" } ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "__DirectiveLocation", "possibleTypes": null } - ], - "directives": [ - { - "name": "include", - "description": "Directs the executor to include this field or fragment only when the `if` argument is true.", - "locations": [ - "FIELD", - "FRAGMENT_SPREAD", - "INLINE_FRAGMENT" - ], - "args": [ - { - "name": "if", - "description": "Included when true.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - } - ] - }, - { - "name": "skip", - "description": "Directs the executor to skip this field or fragment when the `if` argument is true.", - "locations": [ - "FIELD", - "FRAGMENT_SPREAD", - "INLINE_FRAGMENT" - ], - "args": [ - { - "name": "if", - "description": "Skipped when true.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - } - ] - } ] } } From 028404cf4daf2727d76afe7323edde65018abdcf Mon Sep 17 00:00:00 2001 From: Jarvis Raymond Date: Fri, 4 Oct 2024 11:34:29 -0500 Subject: [PATCH 24/25] feat(discoveryEnhancedLoading): formated for consistency and with linter --- src/Discovery/Utils/MDSUtils/MDSUtils.jsx | 6 +++--- src/Discovery/Utils/MDSUtils/MDSUtils.test.jsx | 2 -- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/src/Discovery/Utils/MDSUtils/MDSUtils.jsx b/src/Discovery/Utils/MDSUtils/MDSUtils.jsx index 33be904487..2f18a36385 100644 --- a/src/Discovery/Utils/MDSUtils/MDSUtils.jsx +++ b/src/Discovery/Utils/MDSUtils/MDSUtils.jsx @@ -2,14 +2,14 @@ import { mdsURL, studyRegistrationConfig } from '../../../localconf'; const STUDY_DATA_FIELD = 'gen3_discovery'; // field in the MDS response that contains the study data -const loadStudiesFromMDS = async (guidType = 'discovery_metadata', fetchSize= 2000, loadAllMetadata = true ) => { +const loadStudiesFromMDS = async (guidType = 'discovery_metadata', fetchSize = 2000, loadAllMetadata = true) => { try { let allStudies = []; let offset = 0; // request up to fetchSize number of studies from MDS at a time. let shouldContinue = true; while (shouldContinue) { - const url =`${mdsURL}?data=True&_guid_type=${guidType}&limit=${fetchSize}&offset=${offset}`; + const url = `${mdsURL}?data=True&_guid_type=${guidType}&limit=${fetchSize}&offset=${offset}`; // It's OK to disable no-await-in-loop rule here -- it's telling us to refactor // using Promise.all() so that we can fire multiple requests at one. // But we WANT to delay sending the next request to MDS until we know we need it. @@ -29,7 +29,7 @@ const loadStudiesFromMDS = async (guidType = 'discovery_metadata', fetchSize= 20 return study; }); allStudies = allStudies.concat(studies); - const noMoreStudiesToLoad = studies.length < fetchSize ; + const noMoreStudiesToLoad = studies.length < fetchSize; if (noMoreStudiesToLoad || loadAllMetadata === false) { shouldContinue = false; return allStudies; diff --git a/src/Discovery/Utils/MDSUtils/MDSUtils.test.jsx b/src/Discovery/Utils/MDSUtils/MDSUtils.test.jsx index 9c9248a2b8..d23ab47ab7 100644 --- a/src/Discovery/Utils/MDSUtils/MDSUtils.test.jsx +++ b/src/Discovery/Utils/MDSUtils/MDSUtils.test.jsx @@ -3,8 +3,6 @@ import { mdsURL } from '../../../localconf'; global.fetch = jest.fn(); - - describe('MDS Data Loading Functions', () => { afterEach(() => { jest.clearAllMocks(); From 28382efccc2058c35c70bcb29059905f9a0831a9 Mon Sep 17 00:00:00 2001 From: Jarvis Raymond Date: Fri, 4 Oct 2024 11:44:59 -0500 Subject: [PATCH 25/25] feat(discoveryEnhancedLoading): updated unit test to use new parameter --- src/Discovery/Utils/MDSUtils/MDSUtils.test.jsx | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/Discovery/Utils/MDSUtils/MDSUtils.test.jsx b/src/Discovery/Utils/MDSUtils/MDSUtils.test.jsx index d23ab47ab7..7456e5e8cd 100644 --- a/src/Discovery/Utils/MDSUtils/MDSUtils.test.jsx +++ b/src/Discovery/Utils/MDSUtils/MDSUtils.test.jsx @@ -26,21 +26,23 @@ describe('MDS Data Loading Functions', () => { ); }); - it('should load studies successfully with limit of 5', async () => { + it('should load studies successfully with limit of 3 with loadAllMetadata false', async () => { const mockResponse = { 0: { gen3_discovery: { name: 'Study 1' } }, 1: { gen3_discovery: { name: 'Study 2' } }, + 2: { gen3_discovery: { name: 'Study 3' } }, }; fetch.mockResolvedValueOnce({ status: 200, json: jest.fn().mockResolvedValueOnce(mockResponse), }); - const studies = await loadStudiesFromMDS('discovery_metadata', 5); - expect(studies).toEqual([{ name: 'Study 1' }, { name: 'Study 2' }]); + const studies = await loadStudiesFromMDS('discovery_metadata', 3, false); + expect(fetch).toHaveBeenCalledTimes(1); expect(fetch).toHaveBeenCalledWith( - `${mdsURL}?data=True&_guid_type=discovery_metadata&limit=5&offset=0`, + `${mdsURL}?data=True&_guid_type=discovery_metadata&limit=3&offset=0`, ); + expect(studies).toEqual([{ name: 'Study 1' },{ name: 'Study 2' },{ name: 'Study 3' }]); }); it('should throw an error on fetch failure', async () => {