Frappe UI - Fetching child tables with createListResource

When querying a doctype that contains child tables, how do you reference the child tables in the list resource, or do you have to create a document resource for each list resource record?

Example:

export let teams = createListResource({
  type: 'list',
  doctype: 'Team',
  fields: [
    'name',
    'title',
    'icon',
    'modified',
    'creation',
    'childTableName',
  ],
  orderBy: 'title asc',
  cache: 'Teams',
  pageLength: 999,
  auto: true })