export default createFragmentContainer(WorkHourList, graphql`
fragment WorkHourList_viewer on Viewer {
allWorkHours(filter:{
project: {
id : $proj_id
}
},last:100, orderBy: createdAt_DESC) @connection(key: "WorkList_allWorkHours") {
edges {
node {
...WorkHour_workhour
}
}
}
}
`)