I want to make a schema in graphQl for such an object:
author: "name",
sessions: 12345,
path: "link",
title: "Post-title",
oneWeekSession : {
202001: 123,
202002: 124,
}
that's what i have now
type CustomHits {
session: Int,
title: String,
path: String,
title: String,
oneWeekSession : {???}
}
`
How to write oneweekSessions so that it has any number of lines?