query GetAllProjects{
getAllProjects{
id,
title,
slug,
content
}
getProjectInfo{
id,
title,
slug,
content
}
}
import * as GetAllProjects from '../graphql/project.graphql';
query GetAllProjects($param: TypeParam, $param2: TypeParam2){
getAllProjects{
id,
title,
slug,
content
}
getProjectInfo(param: $param, param2: $param2){
id,
title,
slug,
content
}
}