TypeError: Cannot read property 'items' of null











up vote
0
down vote

favorite












Whenever I try to run my react app, I keep getting the following error:




TypeError: Cannot read property 'items' of null




It seems to stem from the the code below:



import React, { Component } from "react";
import { Link } from "react-router-dom";

import { graphql, compose, withApollo } from "react-apollo";
import QueryAllClients from "../GraphQL/QueryAllClients";
import MutationDeleteClient from "../GraphQL/MutationDeleteClient";

class AllClients extends Component {

state = {
busy: false,
}

static defaultProps = {
clients: ,
deleteClient: () => null,
}

async handleDeleteClick(client, e) {
e.preventDefault();

if (window.confirm(`Are you sure you want to delete client ${client.id}`)) {
const { deleteClient } = this.props;

await deleteClient(client);
}
}

handleSync = async () => {
const { client } = this.props;
const query = QueryAllClients;

this.setState({ busy: true });

await client.query({
query,
fetchPolicy: 'network-only',
});

this.setState({ busy: false });
}

renderClient = (client) => (
<Link to={`/client/${client.id}`} className="card" key={client.id}>
<div className="content">
<div className="header">{client.name}</div>
</div>
<div className="content">
<p><i className="icon calendar"></i>{client.address}</p>
<p><i className="icon clock"></i>{client.phoneNumber}</p>
<p><i className="icon marker"></i>{client.allegedOffenses}</p>
</div>
<div className="extra content">
<i className="icon comment"></i> {client.comments.items.length} comments
</div>
<button className="ui bottom attached button" onClick={this.handleDeleteClick.bind(this, client)}>
<i className="trash icon"></i>
Delete
</button>
</Link>
);

render() {
const { busy } = this.state;
const { clients } = this.props;

return (
<div>
<div className="ui clearing basic segment">
<h1 className="ui header left floated">All Clients</h1>
<button className="ui icon left basic button" onClick={this.handleSync} disabled={busy}>
<i aria-hidden="true" className={`refresh icon ${busy && "loading"}`}></i>
Sync with Server
</button>
</div>
<div className="ui link cards">
<div className="card blue">
<Link to="/newClient" className="new-event content center aligned">
<i className="icon add massive"></i>
<p>Create new client</p>
</Link>
</div>
{.concat(clients).sort((a, b) => a.when.localeCompare(b.when)).map(this.renderClient)}
</div>
</div>
);
}

}

export default withApollo(compose(
graphql(
QueryAllClients,
{
options: {
fetchPolicy: 'cache-first',
},
props: ({ data: { listClients = { items: } } }) => ({
clients: listClients.items
})
}
),
graphql(
MutationDeleteClient,
{
options: {
update: (proxy, { data: { deleteClient } }) => {
const query = QueryAllClients;
const data = proxy.readQuery({ query });

data.listClients.items = data.listClients.items.filter(client => client.id !== deleteClient.id);

proxy.writeQuery({ query, data });
}
},
props: (props) => ({
deleteClient: (client) => {
return props.mutate({
variables: { id: client.id },
optimisticResponse: () => ({
deleteClient: {
...client, __typename: 'Client', comments: { __typename: 'CommentConnection', items: }
}
}),
});
}
})
}
)
)(AllClients));


The error seems to come from "clients: listClients.items" in the graphql query function, but I've worked my way back through the code and I can't seem to find any issue with the items property. After looking through SO, it seems to be a common problem but has several different potential solutions, all of which haven't worked for me so far.



What can I do to fix it?










share|improve this question




























    up vote
    0
    down vote

    favorite












    Whenever I try to run my react app, I keep getting the following error:




    TypeError: Cannot read property 'items' of null




    It seems to stem from the the code below:



    import React, { Component } from "react";
    import { Link } from "react-router-dom";

    import { graphql, compose, withApollo } from "react-apollo";
    import QueryAllClients from "../GraphQL/QueryAllClients";
    import MutationDeleteClient from "../GraphQL/MutationDeleteClient";

    class AllClients extends Component {

    state = {
    busy: false,
    }

    static defaultProps = {
    clients: ,
    deleteClient: () => null,
    }

    async handleDeleteClick(client, e) {
    e.preventDefault();

    if (window.confirm(`Are you sure you want to delete client ${client.id}`)) {
    const { deleteClient } = this.props;

    await deleteClient(client);
    }
    }

    handleSync = async () => {
    const { client } = this.props;
    const query = QueryAllClients;

    this.setState({ busy: true });

    await client.query({
    query,
    fetchPolicy: 'network-only',
    });

    this.setState({ busy: false });
    }

    renderClient = (client) => (
    <Link to={`/client/${client.id}`} className="card" key={client.id}>
    <div className="content">
    <div className="header">{client.name}</div>
    </div>
    <div className="content">
    <p><i className="icon calendar"></i>{client.address}</p>
    <p><i className="icon clock"></i>{client.phoneNumber}</p>
    <p><i className="icon marker"></i>{client.allegedOffenses}</p>
    </div>
    <div className="extra content">
    <i className="icon comment"></i> {client.comments.items.length} comments
    </div>
    <button className="ui bottom attached button" onClick={this.handleDeleteClick.bind(this, client)}>
    <i className="trash icon"></i>
    Delete
    </button>
    </Link>
    );

    render() {
    const { busy } = this.state;
    const { clients } = this.props;

    return (
    <div>
    <div className="ui clearing basic segment">
    <h1 className="ui header left floated">All Clients</h1>
    <button className="ui icon left basic button" onClick={this.handleSync} disabled={busy}>
    <i aria-hidden="true" className={`refresh icon ${busy && "loading"}`}></i>
    Sync with Server
    </button>
    </div>
    <div className="ui link cards">
    <div className="card blue">
    <Link to="/newClient" className="new-event content center aligned">
    <i className="icon add massive"></i>
    <p>Create new client</p>
    </Link>
    </div>
    {.concat(clients).sort((a, b) => a.when.localeCompare(b.when)).map(this.renderClient)}
    </div>
    </div>
    );
    }

    }

    export default withApollo(compose(
    graphql(
    QueryAllClients,
    {
    options: {
    fetchPolicy: 'cache-first',
    },
    props: ({ data: { listClients = { items: } } }) => ({
    clients: listClients.items
    })
    }
    ),
    graphql(
    MutationDeleteClient,
    {
    options: {
    update: (proxy, { data: { deleteClient } }) => {
    const query = QueryAllClients;
    const data = proxy.readQuery({ query });

    data.listClients.items = data.listClients.items.filter(client => client.id !== deleteClient.id);

    proxy.writeQuery({ query, data });
    }
    },
    props: (props) => ({
    deleteClient: (client) => {
    return props.mutate({
    variables: { id: client.id },
    optimisticResponse: () => ({
    deleteClient: {
    ...client, __typename: 'Client', comments: { __typename: 'CommentConnection', items: }
    }
    }),
    });
    }
    })
    }
    )
    )(AllClients));


    The error seems to come from "clients: listClients.items" in the graphql query function, but I've worked my way back through the code and I can't seem to find any issue with the items property. After looking through SO, it seems to be a common problem but has several different potential solutions, all of which haven't worked for me so far.



    What can I do to fix it?










    share|improve this question


























      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      Whenever I try to run my react app, I keep getting the following error:




      TypeError: Cannot read property 'items' of null




      It seems to stem from the the code below:



      import React, { Component } from "react";
      import { Link } from "react-router-dom";

      import { graphql, compose, withApollo } from "react-apollo";
      import QueryAllClients from "../GraphQL/QueryAllClients";
      import MutationDeleteClient from "../GraphQL/MutationDeleteClient";

      class AllClients extends Component {

      state = {
      busy: false,
      }

      static defaultProps = {
      clients: ,
      deleteClient: () => null,
      }

      async handleDeleteClick(client, e) {
      e.preventDefault();

      if (window.confirm(`Are you sure you want to delete client ${client.id}`)) {
      const { deleteClient } = this.props;

      await deleteClient(client);
      }
      }

      handleSync = async () => {
      const { client } = this.props;
      const query = QueryAllClients;

      this.setState({ busy: true });

      await client.query({
      query,
      fetchPolicy: 'network-only',
      });

      this.setState({ busy: false });
      }

      renderClient = (client) => (
      <Link to={`/client/${client.id}`} className="card" key={client.id}>
      <div className="content">
      <div className="header">{client.name}</div>
      </div>
      <div className="content">
      <p><i className="icon calendar"></i>{client.address}</p>
      <p><i className="icon clock"></i>{client.phoneNumber}</p>
      <p><i className="icon marker"></i>{client.allegedOffenses}</p>
      </div>
      <div className="extra content">
      <i className="icon comment"></i> {client.comments.items.length} comments
      </div>
      <button className="ui bottom attached button" onClick={this.handleDeleteClick.bind(this, client)}>
      <i className="trash icon"></i>
      Delete
      </button>
      </Link>
      );

      render() {
      const { busy } = this.state;
      const { clients } = this.props;

      return (
      <div>
      <div className="ui clearing basic segment">
      <h1 className="ui header left floated">All Clients</h1>
      <button className="ui icon left basic button" onClick={this.handleSync} disabled={busy}>
      <i aria-hidden="true" className={`refresh icon ${busy && "loading"}`}></i>
      Sync with Server
      </button>
      </div>
      <div className="ui link cards">
      <div className="card blue">
      <Link to="/newClient" className="new-event content center aligned">
      <i className="icon add massive"></i>
      <p>Create new client</p>
      </Link>
      </div>
      {.concat(clients).sort((a, b) => a.when.localeCompare(b.when)).map(this.renderClient)}
      </div>
      </div>
      );
      }

      }

      export default withApollo(compose(
      graphql(
      QueryAllClients,
      {
      options: {
      fetchPolicy: 'cache-first',
      },
      props: ({ data: { listClients = { items: } } }) => ({
      clients: listClients.items
      })
      }
      ),
      graphql(
      MutationDeleteClient,
      {
      options: {
      update: (proxy, { data: { deleteClient } }) => {
      const query = QueryAllClients;
      const data = proxy.readQuery({ query });

      data.listClients.items = data.listClients.items.filter(client => client.id !== deleteClient.id);

      proxy.writeQuery({ query, data });
      }
      },
      props: (props) => ({
      deleteClient: (client) => {
      return props.mutate({
      variables: { id: client.id },
      optimisticResponse: () => ({
      deleteClient: {
      ...client, __typename: 'Client', comments: { __typename: 'CommentConnection', items: }
      }
      }),
      });
      }
      })
      }
      )
      )(AllClients));


      The error seems to come from "clients: listClients.items" in the graphql query function, but I've worked my way back through the code and I can't seem to find any issue with the items property. After looking through SO, it seems to be a common problem but has several different potential solutions, all of which haven't worked for me so far.



      What can I do to fix it?










      share|improve this question















      Whenever I try to run my react app, I keep getting the following error:




      TypeError: Cannot read property 'items' of null




      It seems to stem from the the code below:



      import React, { Component } from "react";
      import { Link } from "react-router-dom";

      import { graphql, compose, withApollo } from "react-apollo";
      import QueryAllClients from "../GraphQL/QueryAllClients";
      import MutationDeleteClient from "../GraphQL/MutationDeleteClient";

      class AllClients extends Component {

      state = {
      busy: false,
      }

      static defaultProps = {
      clients: ,
      deleteClient: () => null,
      }

      async handleDeleteClick(client, e) {
      e.preventDefault();

      if (window.confirm(`Are you sure you want to delete client ${client.id}`)) {
      const { deleteClient } = this.props;

      await deleteClient(client);
      }
      }

      handleSync = async () => {
      const { client } = this.props;
      const query = QueryAllClients;

      this.setState({ busy: true });

      await client.query({
      query,
      fetchPolicy: 'network-only',
      });

      this.setState({ busy: false });
      }

      renderClient = (client) => (
      <Link to={`/client/${client.id}`} className="card" key={client.id}>
      <div className="content">
      <div className="header">{client.name}</div>
      </div>
      <div className="content">
      <p><i className="icon calendar"></i>{client.address}</p>
      <p><i className="icon clock"></i>{client.phoneNumber}</p>
      <p><i className="icon marker"></i>{client.allegedOffenses}</p>
      </div>
      <div className="extra content">
      <i className="icon comment"></i> {client.comments.items.length} comments
      </div>
      <button className="ui bottom attached button" onClick={this.handleDeleteClick.bind(this, client)}>
      <i className="trash icon"></i>
      Delete
      </button>
      </Link>
      );

      render() {
      const { busy } = this.state;
      const { clients } = this.props;

      return (
      <div>
      <div className="ui clearing basic segment">
      <h1 className="ui header left floated">All Clients</h1>
      <button className="ui icon left basic button" onClick={this.handleSync} disabled={busy}>
      <i aria-hidden="true" className={`refresh icon ${busy && "loading"}`}></i>
      Sync with Server
      </button>
      </div>
      <div className="ui link cards">
      <div className="card blue">
      <Link to="/newClient" className="new-event content center aligned">
      <i className="icon add massive"></i>
      <p>Create new client</p>
      </Link>
      </div>
      {.concat(clients).sort((a, b) => a.when.localeCompare(b.when)).map(this.renderClient)}
      </div>
      </div>
      );
      }

      }

      export default withApollo(compose(
      graphql(
      QueryAllClients,
      {
      options: {
      fetchPolicy: 'cache-first',
      },
      props: ({ data: { listClients = { items: } } }) => ({
      clients: listClients.items
      })
      }
      ),
      graphql(
      MutationDeleteClient,
      {
      options: {
      update: (proxy, { data: { deleteClient } }) => {
      const query = QueryAllClients;
      const data = proxy.readQuery({ query });

      data.listClients.items = data.listClients.items.filter(client => client.id !== deleteClient.id);

      proxy.writeQuery({ query, data });
      }
      },
      props: (props) => ({
      deleteClient: (client) => {
      return props.mutate({
      variables: { id: client.id },
      optimisticResponse: () => ({
      deleteClient: {
      ...client, __typename: 'Client', comments: { __typename: 'CommentConnection', items: }
      }
      }),
      });
      }
      })
      }
      )
      )(AllClients));


      The error seems to come from "clients: listClients.items" in the graphql query function, but I've worked my way back through the code and I can't seem to find any issue with the items property. After looking through SO, it seems to be a common problem but has several different potential solutions, all of which haven't worked for me so far.



      What can I do to fix it?







      javascript reactjs graphql apollo






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 8 at 11:08









      Suraj Rao

      22.1k75467




      22.1k75467










      asked Nov 8 at 11:05









      jayce504

      34




      34





























          active

          oldest

          votes











          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














           

          draft saved


          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53206482%2ftypeerror-cannot-read-property-items-of-null%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown






























          active

          oldest

          votes













          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes
















           

          draft saved


          draft discarded



















































           


          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53206482%2ftypeerror-cannot-read-property-items-of-null%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Schultheiß

          Liste der Kulturdenkmale in Wilsdruff

          Android Play Services Check