I only want to show my owned files when use the following code, but actually it list all the files even those share with me. how can I prevent this happen please
gapi.client.drive.files
.list({
includeItemsFromAllDrives: false,
supportsAllDrives: false,
pageSize: 10,
fields: 'nextPageToken, files(id, name, mimeType, modifiedTime)',
q: searchTerm
})